Home
last modified time | relevance | path

Searched refs:main_high_ram (Results 1 – 4 of 4) sorted by relevance

/dports/emulators/quasi88/quasi88-0.6.4/src/
H A Dmemory.c103 byte *main_high_ram; /* ��® RAM(��΢)[0x1000] (4KB) */ variable
328 main_high_ram= (byte *) mem_alloc( sizeof(byte) * 0x1000 ); in memory_allocate()
691 if( main_high_ram )free( main_high_ram ); in memory_free()
754 if( statesave_block( SID_HIGH, main_high_ram, 0x1000 ) != STATE_OK ) in statesave_memory()
801 if( stateload_block( SID_HIGH, main_high_ram, 0x1000 ) != STATE_OK ) in stateload_memory()
H A Dmemory.h29 extern byte *main_high_ram; /* ��® RAM(��΢) (4KB) */
H A Dpc88main.c417 read_mem_8000_83ff = &main_high_ram[ window_offset - 0xf000 ]; in main_memory_mapping_8000_83ff()
418 write_mem_8000_83ff = &main_high_ram[ window_offset - 0xf000 ]; in main_memory_mapping_8000_83ff()
443 read_mem_f000_ffff = &main_high_ram[ 0x0000 ]; in main_memory_mapping_c000_ffff()
455 write_mem_f000_ffff = &main_high_ram[ 0x0000 ]; in main_memory_mapping_c000_ffff()
663 else return main_high_ram[ addr & 0x0fff ]; in main_fetch()
690 else return main_high_ram[ addr & 0x0fff ]; in main_mem_read()
716 else main_high_ram[ addr & 0x0fff ] = data; in main_mem_write()
2590 memcpy( main_high_ram, &main_ram[0xf000], 0x1000 );
2637 memcpy( &main_high_ram[0], &main_ram[0xf000], 0x1000 ); in power_on_ram_init()
H A Dmonitor.c1231 if( 0xf000<=addr && high_mode ) return main_high_ram[addr-0xf000]; in peek_memory()
1260 else return main_high_ram[addr-0xf000]; in peek_memory()
1287 if( 0xf000<=addr && high_mode ) main_high_ram[addr-0xf000] = data; in poke_memory()
1325 else main_high_ram[addr-0xf000] = data; in poke_memory()
4766 fwrite( main_high_ram, sizeof(byte), 0x01000, fp ); in monitor_misc()