Added waitstates on instruction fetch from ROM.
This commit is contained in:
parent
4182b10e10
commit
8546ce14f0
5 changed files with 38 additions and 30 deletions
|
|
@ -28,6 +28,8 @@ typedef struct mem_mapping_t
|
|||
#define MEM_MAPPING_EXTERNAL 1
|
||||
/*Only present on internal bus (RAM)*/
|
||||
#define MEM_MAPPING_INTERNAL 2
|
||||
/*Executing from ROM may involve additional wait states*/
|
||||
#define MEM_MAPPING_ROM 4
|
||||
|
||||
extern uint8_t *ram,*rom;
|
||||
extern uint8_t romext[32768];
|
||||
|
|
|
|||
Loading…
Reference in a new issue