summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/drcuml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/drcuml.cpp')
-rw-r--r--src/devices/cpu/drcuml.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/drcuml.cpp b/src/devices/cpu/drcuml.cpp
index efd3a81614a..0abb6172025 100644
--- a/src/devices/cpu/drcuml.cpp
+++ b/src/devices/cpu/drcuml.cpp
@@ -230,7 +230,7 @@ void drcuml_state::symbol_add(void *base, UINT32 length, const char *name)
//-------------------------------------------------
// symbol_find - look up a symbol from the
-// internal symbol table or return NULL if not
+// internal symbol table or return nullptr if not
// found
//-------------------------------------------------
@@ -252,7 +252,7 @@ const char *drcuml_state::symbol_find(void *base, UINT32 *offset)
return cursym->m_name.c_str();
}
- // not found; return NULL
+ // not found; return nullptr
return nullptr;
}
@@ -502,7 +502,7 @@ const char *drcuml_block::get_comment_text(const instruction &inst, std::string
return comment.c_str();
}
- // everything else is NULL
+ // everything else is nullptr
return nullptr;
}