Add init code for mapper

init_mapper now remaps so that it can change irq vectors
This commit is contained in:
Byron Lathi
2023-11-22 17:33:12 -08:00
parent 924dd69f2b
commit 930e802a86
6 changed files with 79 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
#ifndef _MAPPER_H
#define _MAPPER_H
#include <stdint.h>
void init_mapper();
void map(uint16_t p_page, uint8_t v_page);
#endif