Home
last modified time | relevance | path

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

/dports/emulators/quasi88/quasi88-0.6.4/src/
H A Dmemory.c105 byte *sub_romram; /* ���� ROM/RAM [0x8000] (32KB) */ variable
325 sub_romram = (byte *) mem_alloc( sizeof(byte) * 0x8000 ); in memory_allocate()
356 size = load_rom( rom_list[ SUB_ROM ], sub_romram, 0x2000, DISP_FNAME ); in memory_allocate()
365 memcpy( &sub_romram[0x0800], &sub_romram[0x0000], 0x0800 ); in memory_allocate()
366 memcpy( &sub_romram[0x1000], &sub_romram[0x0000], 0x1000 ); in memory_allocate()
380 load_compat_rom( sub_romram, 0x14000, 0x2000, fp ); in memory_allocate()
398 memcpy( &sub_romram[0x2000], &sub_romram[0x0000], 0x2000 ); in memory_allocate()
399 memset( &sub_romram[0x4000], 0xff, 0x4000 ); in memory_allocate()
688 if( sub_romram) free( sub_romram ); in memory_free()
756 if( statesave_block( SID_SUB, &sub_romram[0x4000], 0x4000 ) != STATE_OK ) in statesave_memory()
[all …]
H A Dpc88sub.c52 return sub_romram[ addr & 0x7fff ]; in sub_fetch()
68 return sub_romram[ addr & 0x7fff ]; in sub_mem_read()
79 sub_romram[ addr & 0x7fff ] = data; in sub_mem_write()
85 sub_romram[ addr & 0x7fff ] = data; in sub_mem_write()
H A Dmemory.h30 extern byte *sub_romram; /* ���� ROM/RAM (32KB) */
H A Dmonitor.c4774 fwrite( &sub_romram[0x4000], sizeof(byte), 0x4000, fp ); in monitor_misc()