diff options
author | 2021-02-02 11:54:58 -0500 | |
---|---|---|
committer | 2021-02-02 11:56:18 -0500 | |
commit | 3de3c44c281426ae3c36e4e7a7fc19b722b0f35a (patch) | |
tree | 6a7006ca4ff3189975d587b5f927bbbfdbec719e /src/devices/cpu/m88000/m88000.cpp | |
parent | 24d186a85661873feba48020507a9175ad314109 (diff) |
ncd19c: Map some memory and devices
* m88000: Fix uninitialized member
Diffstat (limited to 'src/devices/cpu/m88000/m88000.cpp')
-rw-r--r-- | src/devices/cpu/m88000/m88000.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/m88000/m88000.cpp b/src/devices/cpu/m88000/m88000.cpp index 67a511a48a1..130888d8cc3 100644 --- a/src/devices/cpu/m88000/m88000.cpp +++ b/src/devices/cpu/m88000/m88000.cpp @@ -134,6 +134,7 @@ mc88100_device::mc88100_device(const machine_config &mconfig, const char *tag, d , m_xip(0) , m_nip(0) , m_fip(0) + , m_sb(0) , m_r{ 0 } , m_cr{ 0 } , m_fcr{ 0 } |