Home
last modified time | relevance | path

Searched refs:z80ram (Results 1 – 7 of 7) sorted by relevance

/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burn/drv/konami/
H A Dtimeplt_snd.cpp12 static UINT8 *z80ram; variable
118 z80ram = ram; in TimepltSndInit()
124 ZetMapMemory(z80ram, 0x3000, 0x33ff, MAP_RAM); in TimepltSndInit()
125 ZetMapMemory(z80ram, 0x3400, 0x37ff, MAP_RAM); in TimepltSndInit()
126 ZetMapMemory(z80ram, 0x3800, 0x3bff, MAP_RAM); in TimepltSndInit()
127 ZetMapMemory(z80ram, 0x3c00, 0x3fff, MAP_RAM); in TimepltSndInit()
158 z80ram = ram; in LocomotnSndInit()
164 ZetMapMemory(z80ram, 0x2000, 0x23ff, MAP_RAM); in LocomotnSndInit()
165 ZetMapMemory(z80ram, 0x2400, 0x27ff, MAP_RAM); in LocomotnSndInit()
166 ZetMapMemory(z80ram, 0x2800, 0x2bff, MAP_RAM); in LocomotnSndInit()
[all …]
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/burn/drv/konami/
H A Dtimeplt_snd.cpp11 static UINT8 *z80ram; variable
116 z80ram = ram; in TimepltSndInit()
122 ZetMapMemory(z80ram, 0x3000, 0x33ff, MAP_RAM); in TimepltSndInit()
123 ZetMapMemory(z80ram, 0x3400, 0x37ff, MAP_RAM); in TimepltSndInit()
124 ZetMapMemory(z80ram, 0x3800, 0x3bff, MAP_RAM); in TimepltSndInit()
125 ZetMapMemory(z80ram, 0x3c00, 0x3fff, MAP_RAM); in TimepltSndInit()
155 z80ram = ram; in LocomotnSndInit()
161 ZetMapMemory(z80ram, 0x2000, 0x23ff, MAP_RAM); in LocomotnSndInit()
162 ZetMapMemory(z80ram, 0x2400, 0x27ff, MAP_RAM); in LocomotnSndInit()
163 ZetMapMemory(z80ram, 0x2800, 0x2bff, MAP_RAM); in LocomotnSndInit()
[all …]
/dports/emulators/dgen-sdl/dgen-sdl-1.33/
H A Dmd.cpp388 z80.z80Base = z80ram; in z80_init()
566 mem=ram=z80ram=saveram=NULL; in md()
641 mem=ram=z80ram=NULL; in md()
647 z80ram=mem+0x10000; in md()
649 z80ram[0x10000] = 0x00; // NOP in md()
650 z80ram[0x10001] = 0x00; // NOP in md()
651 z80ram[0x10002] = 0x00; // NOP in md()
652 z80ram[0x10003] = 0x00; // NOP in md()
655 z80ram[0x10006] = 0x00; in md()
656 z80ram[0x10007] = 0x00; in md()
[all …]
H A Dmem.cpp20 return z80ram[(a & 0x1fff)]; in z80_read()
43 z80ram[(a & 0x1fff)] = d; in z80_write()
802 drz80.Z80PC_BASE = (uintptr_t)z80ram; in drz80_rebase_pc()
809 drz80.Z80SP_BASE = (uintptr_t)z80ram; in drz80_rebase_sp()
H A Dsave.cpp359 memcpy(z80ram, &(*buf)[0x474], 0x2000); in import_gst()
451 memcpy(&(*buf)[0x474], z80ram, 0x2000); in export_gst()
H A Dmdfr.cpp347 drz80.Z80SP_BASE = (uintptr_t)z80ram; in md_set_drz80_sync()
348 drz80.Z80PC_BASE = (uintptr_t)z80ram; in md_set_drz80_sync()
H A Dmd.h398 unsigned char *mem,*rom,*ram,*z80ram; variable