Added waitstates on instruction fetch from ROM.

This commit is contained in:
SarahW 2018-03-11 11:03:20 +00:00
commit 8546ce14f0
5 changed files with 38 additions and 30 deletions

View file

@ -79,7 +79,7 @@ int rom_init(rom_t *rom, char *fn, uint32_t address, int size, int mask, int fil
mem_write_nullw,
mem_write_nulll,
rom->rom,
flags,
flags | MEM_MAPPING_ROM,
rom);
return 0;
@ -124,7 +124,7 @@ int rom_init_interleaved(rom_t *rom, char *fn_low, char *fn_high, uint32_t addre
mem_write_nullw,
mem_write_nulll,
rom->rom,
flags,
flags | MEM_MAPPING_ROM,
rom);
return 0;