Searched refs:main_rom_ext (Results 1 – 4 of 4) sorted by relevance
/dports/emulators/quasi88/quasi88-0.6.4/src/ |
H A D | memory.c | 100 byte (*main_rom_ext)[0x2000]; /* ��ĥ ROM [4][0x2000](8KB *4) */ variable 323 main_rom_ext = (byte(*)[0x2000]) mem_alloc( sizeof(byte) * 0x2000 *4 ); in memory_allocate() 350 load_rom( rom_list[ EXT0_ROM ], main_rom_ext[0], 0x2000, DISP_RESULT ); in memory_allocate() 351 load_rom( rom_list[ EXT1_ROM ], main_rom_ext[1], 0x2000, DISP_RESULT ); in memory_allocate() 352 load_rom( rom_list[ EXT2_ROM ], main_rom_ext[2], 0x2000, DISP_RESULT ); in memory_allocate() 353 load_rom( rom_list[ EXT3_ROM ], main_rom_ext[3], 0x2000, DISP_RESULT ); in memory_allocate() 375 load_compat_rom( main_rom_ext[0], 0x0c000, 0x2000, fp ); in memory_allocate() 376 load_compat_rom( main_rom_ext[1], 0x0e000, 0x2000, fp ); in memory_allocate() 377 load_compat_rom( main_rom_ext[2], 0x10000, 0x2000, fp ); in memory_allocate() 378 load_compat_rom( main_rom_ext[3], 0x12000, 0x2000, fp ); in memory_allocate() [all …]
|
H A D | memory.h | 26 extern byte (*main_rom_ext)[0x2000]; /* ��ĥ ROM (8KB *4) */
|
H A D | monitor.c | 1237 if( 0x6000<=addr && addr<0x8000 ) return main_rom_ext[0][addr-0x6000]; in peek_memory() 1240 if( 0x6000<=addr && addr<0x8000 ) return main_rom_ext[1][addr-0x6000]; in peek_memory() 1243 if( 0x6000<=addr && addr<0x8000 ) return main_rom_ext[2][addr-0x6000]; in peek_memory() 1246 if( 0x6000<=addr && addr<0x8000 ) return main_rom_ext[3][addr-0x6000]; in peek_memory() 1295 if( 0x6000<=addr && addr<0x8000 ) main_rom_ext[0][addr-0x6000] = data; in poke_memory() 1299 if( 0x6000<=addr && addr<0x8000 ) main_rom_ext[1][addr-0x6000] = data; in poke_memory() 1303 if( 0x6000<=addr && addr<0x8000 ) main_rom_ext[2][addr-0x6000] = data; in poke_memory() 1307 if( 0x6000<=addr && addr<0x8000 ) main_rom_ext[3][addr-0x6000] = data; in poke_memory()
|
H A D | pc88main.c | 293 read_mem_6000_7fff = &main_rom_ext[ misc_ctrl&MISC_CTRL_EBANK ][0]; in main_memory_mapping_0000_7fff() 326 read_mem_6000_7fff = &main_rom_ext[ misc_ctrl&MISC_CTRL_EBANK ][0]; in main_memory_mapping_0000_7fff() 373 read_mem_6000_7fff = &main_rom_ext[ misc_ctrl&MISC_CTRL_EBANK ][0]; in main_memory_mapping_0000_7fff()
|