summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms34010/tms34010.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms34010/tms34010.cpp')
-rw-r--r--src/devices/cpu/tms34010/tms34010.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/devices/cpu/tms34010/tms34010.cpp b/src/devices/cpu/tms34010/tms34010.cpp
index 9258a2b1836..3fffd1c03c5 100644
--- a/src/devices/cpu/tms34010/tms34010.cpp
+++ b/src/devices/cpu/tms34010/tms34010.cpp
@@ -36,11 +36,11 @@ const device_type TMS34020 = &device_creator<tms34020_device>;
tms340x0_device::tms340x0_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname)
: cpu_device(mconfig, type, name, tag, owner, clock, shortname, __FILE__)
, device_video_interface(mconfig, *this)
- , m_program_config("program", ENDIANNESS_LITTLE, 16, 32, 3)
- , m_halt_on_reset(FALSE)
- , m_pixclock(0)
- , m_pixperclock(0)
- , m_output_int_cb(*this)
+ , m_program_config("program", ENDIANNESS_LITTLE, 16, 32, 3), m_pc(0), m_ppc(0), m_st(0), m_pixel_write(nullptr), m_pixel_read(nullptr), m_raster_op(nullptr), m_pixel_op(nullptr), m_pixel_op_timing(0), m_convsp(0), m_convdp(0), m_convmp(0), m_gfxcycles(0), m_pixelshift(0), m_is_34020(0), m_reset_deferred(false)
+ , m_halt_on_reset(FALSE), m_hblank_stable(0), m_external_host_access(0), m_executing(0), m_program(nullptr), m_direct(nullptr)
+ , m_pixclock(0)
+ , m_pixperclock(0), m_scantimer(nullptr), m_icount(0)
+ , m_output_int_cb(*this)
{
}
@@ -627,10 +627,10 @@ void tms340x0_device::device_reset()
{
m_ppc = 0;
m_st = 0;
- m_pixel_write = NULL;
- m_pixel_read = NULL;
- m_raster_op = NULL;
- m_pixel_op = NULL;
+ m_pixel_write = nullptr;
+ m_pixel_read = nullptr;
+ m_raster_op = nullptr;
+ m_pixel_op = nullptr;
m_pixel_op_timing = 0;
m_convsp = 0;
m_convdp = 0;
@@ -812,14 +812,14 @@ void tms340x0_device::set_pixel_function()
const tms340x0_device::raster_op_func tms340x0_device::s_raster_ops[32] =
{
- NULL, &tms340x0_device::raster_op_1 , &tms340x0_device::raster_op_2 , &tms340x0_device::raster_op_3,
+ nullptr, &tms340x0_device::raster_op_1 , &tms340x0_device::raster_op_2 , &tms340x0_device::raster_op_3,
&tms340x0_device::raster_op_4 , &tms340x0_device::raster_op_5 , &tms340x0_device::raster_op_6 , &tms340x0_device::raster_op_7,
&tms340x0_device::raster_op_8 , &tms340x0_device::raster_op_9 , &tms340x0_device::raster_op_10, &tms340x0_device::raster_op_11,
&tms340x0_device::raster_op_12, &tms340x0_device::raster_op_13, &tms340x0_device::raster_op_14, &tms340x0_device::raster_op_15,
&tms340x0_device::raster_op_16, &tms340x0_device::raster_op_17, &tms340x0_device::raster_op_18, &tms340x0_device::raster_op_19,
- &tms340x0_device::raster_op_20, &tms340x0_device::raster_op_21, NULL, NULL,
- NULL, NULL, NULL, NULL,
- NULL, NULL, NULL, NULL,
+ &tms340x0_device::raster_op_20, &tms340x0_device::raster_op_21, nullptr, nullptr,
+ nullptr, nullptr, nullptr, nullptr,
+ nullptr, nullptr, nullptr, nullptr,
};
@@ -861,7 +861,7 @@ TIMER_CALLBACK_MEMBER( tms340x0_device::scanline_callback )
if (enabled && vcount == SMART_IOREG(DPYINT))
{
/* generate the display interrupt signal */
- internal_interrupt_callback(NULL, TMS34010_DI);
+ internal_interrupt_callback(nullptr, TMS34010_DI);
}
/* at the start of VBLANK, load the starting display address */