diff options
Diffstat (limited to 'src/devices/cpu/lh5801/5801dasm.cpp')
-rw-r--r-- | src/devices/cpu/lh5801/5801dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/lh5801/5801dasm.cpp b/src/devices/cpu/lh5801/5801dasm.cpp index b622bda9de6..bef5fb4df4b 100644 --- a/src/devices/cpu/lh5801/5801dasm.cpp +++ b/src/devices/cpu/lh5801/5801dasm.cpp @@ -46,7 +46,7 @@ enum Regs }; static const char *const RegNames[]= { - 0, "A", "XL", "XH", "X", "YL", "YH", "Y", "UL", "UH", "U", "P", "S" + nullptr, "A", "XL", "XH", "X", "YL", "YH", "Y", "UL", "UH", "U", "P", "S" }; #if defined(SEC) @@ -89,7 +89,7 @@ enum Ins }; static const char *const InsNames[]={ - "ILL", "ILL", 0, "NOP", + "ILL", "ILL", nullptr, "NOP", "LDA", "STA", "LDI", "LDX", "STX", "LDE", "SDE", "LIN", "SIN", "TIN", |