diff options
Diffstat (limited to 'src/mame/drivers/bitgraph.cpp')
-rw-r--r-- | src/mame/drivers/bitgraph.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/bitgraph.cpp b/src/mame/drivers/bitgraph.cpp index 0343a8b5a73..1269870ef16 100644 --- a/src/mame/drivers/bitgraph.cpp +++ b/src/mame/drivers/bitgraph.cpp @@ -560,10 +560,10 @@ MACHINE_CONFIG_END #ifdef UNUSED_FUNCTION MACHINE_CONFIG_START(bitgraph_state::bg_ppu) - MCFG_DEVICE_ADD(PPU_TAG, I8035, XTAL(6'900'000)) - MCFG_DEVICE_IO_MAP(ppu_io) -// MCFG_MCS48_PORT_T0_IN_CB(READLINE(*this, bitgraph_state, ppu_t0_r)) - MCFG_MCS48_PORT_PROG_OUT_CB(WRITELINE("i8243", i8243_device, prog_w)) + i8035_device &ppu(I8035(config, PPU_TAG, XTAL(6'900'000))); + ppu.set_addrmap(AS_IO, &bitgraph_state::ppu_io); +// ppu.t0_in_cb().set(FUNC(bitgraph_state::ppu_t0_r)); + ppu.prog_out_cb().set("i8243", FUNC(i8243_device::prog_w)); i8243_device &i8243(I8243(config, "i8243")); i8243.read_handler().set_nop(); |