diff options
Diffstat (limited to 'src/devices/cpu/s2650/2650dasm.cpp')
-rw-r--r-- | src/devices/cpu/s2650/2650dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/s2650/2650dasm.cpp b/src/devices/cpu/s2650/2650dasm.cpp index 6a6f9b1a00c..a7bd56d406d 100644 --- a/src/devices/cpu/s2650/2650dasm.cpp +++ b/src/devices/cpu/s2650/2650dasm.cpp @@ -43,12 +43,12 @@ static const int rel[0x100] = { }; typedef char* (*callback) (int addr); -static callback find_symbol = 0; +static callback find_symbol = nullptr; static char *SYM(int addr) { static char buff[8+1]; - char * s = NULL; + char * s = nullptr; if (find_symbol) s = (*find_symbol)(addr); if (s) return s; |