Previous 199869 Revisions Next

r32754 Tuesday 14th October, 2014 at 20:19:05 UTC by Wilbert Pol
(MESS) gameking.c: Changed cpu type; this makes penguin happier. (nw)
[src/mess/drivers]gameking.c

trunk/src/mess/drivers/gameking.c
r32753r32754
2323*/
2424
2525#include "emu.h"
26#include "cpu/m6502/m65c02.h"
26#include "cpu/m6502/m65ce02.h"
2727#include "bus/generic/slot.h"
2828#include "bus/generic/carts.h"
2929
r32753r32754
131131   m_cart_rom->base()[0x3ffc] = 0x00;
132132   m_cart_rom->base()[0x3ffd] = 0x40;
133133
134   // Some fake code to get bios functions called logged
134   // Some fake code to get bios function calls logged
135135   memory_region *maincpu_rom = memregion("maincpu");
136136   maincpu_rom->base()[0x0f80] = 0x9d; // STA $0e00,X
137137   maincpu_rom->base()[0x0f81] = 0x00;
r32753r32754
151151
152152static MACHINE_CONFIG_START( gameking, gameking_state )
153153   /* basic machine hardware */
154   MCFG_CPU_ADD("maincpu", M65C02, 6000000)
154   MCFG_CPU_ADD("maincpu", M65CE02, 6000000)
155155   MCFG_CPU_PROGRAM_MAP(gameking_mem)
156156   //MCFG_CPU_VBLANK_INT_DRIVER("screen", gameking_state,  gameking_frame_int)
157157

Previous 199869 Revisions Next


© 1997-2024 The MAME Team