summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/alph8201/8201dasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/alph8201/8201dasm.cpp')
-rw-r--r--src/devices/cpu/alph8201/8201dasm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/alph8201/8201dasm.cpp b/src/devices/cpu/alph8201/8201dasm.cpp
index 76581fe0ab0..6f4b816990b 100644
--- a/src/devices/cpu/alph8201/8201dasm.cpp
+++ b/src/devices/cpu/alph8201/8201dasm.cpp
@@ -268,7 +268,7 @@ static const char *const Formats[] = {
FMT("1111_1101", "CLR A"), // FD :
FMT("1111_1110", "LD A,(IX0+A)"), // FE :
FMT("1111_1111", "RET"), // FF :
- NULL
+ nullptr
};
#define MAX_OPS ((ARRAY_LENGTH(Formats) - 1) / PTRS_PER_FORMAT)
@@ -294,7 +294,7 @@ static void InitDasm8201(void)
char chr , type;
int pmask , pdown;
- for(i=0;(p=Formats[i*2])!=NULL;i++)
+ for(i=0;(p=Formats[i*2])!=nullptr;i++)
{
mask = 0;
bits = 0;
@@ -339,7 +339,7 @@ static void InitDasm8201(void)
if( (*p) )
Op[i].type |= 0x10;
/* number of param */
- if( (p=strchr(Op[i].fmt,'%'))!=NULL )
+ if( (p=strchr(Op[i].fmt,'%'))!=nullptr )
{
Op[i].type |= 0x01; /* single param */
if(strchr(p+1,'%') )