summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ti99_8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ti99_8.cpp')
-rw-r--r--src/mame/drivers/ti99_8.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/mame/drivers/ti99_8.cpp b/src/mame/drivers/ti99_8.cpp
index 44876108c35..81b1528651b 100644
--- a/src/mame/drivers/ti99_8.cpp
+++ b/src/mame/drivers/ti99_8.cpp
@@ -164,8 +164,6 @@ Known Issues (MZ, 2019-05-10)
#include "emu.h"
#include "cpu/tms9900/tms9995.h"
-#include "bus/ti99/ti99defs.h"
-
#include "sound/sn76496.h"
#include "machine/tms9901.h"
#include "machine/tmc0430.h"
@@ -214,7 +212,7 @@ public:
ti99_8_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_cpu(*this, "maincpu"),
- m_tms9901(*this, TI_TMS9901_TAG),
+ m_tms9901(*this, TI998_TMS9901_TAG),
m_gromport(*this, TI99_GROMPORT_TAG),
m_ioport(*this, TI99_IOPORT_TAG),
m_mainboard(*this, TI998_MAINBOARD_TAG),
@@ -734,11 +732,11 @@ void ti99_8_state::ti99_8(machine_config& config)
m_ioport->ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::pbox_ready));
// Hexbus
- HEXBUS(config, TI_HEXBUS_TAG, 0, hexbus_options, nullptr);
+ HEXBUS(config, TI998_HEXBUS_TAG, 0, hexbus_options, nullptr);
// Sound hardware
SPEAKER(config, "sound_out").front_center();
- sn76496_device& soundgen(SN76496(config, TI_SOUNDCHIP_TAG, 3579545));
+ sn76496_device& soundgen(SN76496(config, TI998_SOUNDCHIP_TAG, 3579545));
soundgen.ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::sound_ready));
soundgen.add_route(ALL_OUTPUTS, "sound_out", 0.75);
@@ -795,7 +793,7 @@ void ti99_8_state::ti99_8_60hz(machine_config &config)
{
ti99_8(config);
// Video hardware
- tms9118_device &video(TMS9118(config, TI_VDP_TAG, XTAL(10'738'635)));
+ tms9118_device &video(TMS9118(config, TI998_VDP_TAG, XTAL(10'738'635)));
video.set_vram_size(0x4000);
video.int_callback().set(FUNC(ti99_8_state::video_interrupt));
video.set_screen("screen");
@@ -810,7 +808,7 @@ void ti99_8_state::ti99_8_50hz(machine_config &config)
{
ti99_8(config);
// Video hardware
- tms9129_device &video(TMS9129(config, TI_VDP_TAG, XTAL(10'738'635)));
+ tms9129_device &video(TMS9129(config, TI998_VDP_TAG, XTAL(10'738'635)));
video.set_vram_size(0x4000);
video.int_callback().set(FUNC(ti99_8_state::video_interrupt));
video.set_screen("screen");