diff options
Diffstat (limited to 'src/devices/cpu/h8/h83006.cpp')
-rw-r--r-- | src/devices/cpu/h8/h83006.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h83006.cpp b/src/devices/cpu/h8/h83006.cpp index 2e203a84dbb..431d257a4b4 100644 --- a/src/devices/cpu/h8/h83006.cpp +++ b/src/devices/cpu/h8/h83006.cpp @@ -28,7 +28,7 @@ h83006_device::h83006_device(const machine_config &mconfig, device_type type, co timer16_2(*this, "timer16:2"), sci0(*this, "sci0"), sci1(*this, "sci1"), - sci2(*this, "sci2") + sci2(*this, "sci2"), syscr(0), ram_start(0) { } @@ -53,7 +53,7 @@ h83006_device::h83006_device(const machine_config &mconfig, const char *tag, dev timer16_2(*this, "timer16:2"), sci0(*this, "sci0"), sci1(*this, "sci1"), - sci2(*this, "sci2") + sci2(*this, "sci2"), syscr(0) { ram_start = 0xfff720; } |