summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/g65816/g65816.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/g65816/g65816.cpp')
-rw-r--r--src/devices/cpu/g65816/g65816.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/g65816/g65816.cpp b/src/devices/cpu/g65816/g65816.cpp
index 03e7320eb89..8373ddbeecf 100644
--- a/src/devices/cpu/g65816/g65816.cpp
+++ b/src/devices/cpu/g65816/g65816.cpp
@@ -737,7 +737,7 @@ void g65816_device::g65816_set_sp(unsigned val)
unsigned g65816_device::g65816_get_reg(int regnum)
{
/* Set the function tables to emulation mode if the FTABLE is NULL */
- if( FTABLE_GET_REG == NULL )
+ if( FTABLE_GET_REG == nullptr )
g65816i_set_execution_mode(EXECUTION_MODE_E);
return (this->*FTABLE_GET_REG)(regnum);
@@ -813,11 +813,11 @@ void g65816_device::device_start()
m_wrdiv = 0;
m_dvdd = 0;
m_rddiv = 0;
- m_opcodes = NULL;
- m_get_reg = NULL;
- m_set_reg = NULL;
- m_set_line = NULL;
- m_execute = NULL;
+ m_opcodes = nullptr;
+ m_get_reg = nullptr;
+ m_set_reg = nullptr;
+ m_set_line = nullptr;
+ m_execute = nullptr;
m_debugger_temp = 0;
m_program = &space(AS_PROGRAM);