diff options
author | 2020-09-13 21:37:20 -0400 | |
---|---|---|
committer | 2020-09-13 21:37:20 -0400 | |
commit | f0572bbb8c666c73de0c33c35f4e91f8f0201b5d (patch) | |
tree | dc8bedb8da5ec6cf39299ee00fa0ef23901f0556 /src/devices/cpu/pdp1/pdp1dasm.cpp | |
parent | 692ff2c06f11a4cbb237595caeddfdfc0c5ed96b (diff) |
pdp1: Clean up callbacks and start encapsulating peripherals
* pdp1, pdp8: Apply word shift to address spaces
Diffstat (limited to 'src/devices/cpu/pdp1/pdp1dasm.cpp')
-rw-r--r-- | src/devices/cpu/pdp1/pdp1dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/pdp1/pdp1dasm.cpp b/src/devices/cpu/pdp1/pdp1dasm.cpp index 9b04c91ec87..0c3286a9257 100644 --- a/src/devices/cpu/pdp1/pdp1dasm.cpp +++ b/src/devices/cpu/pdp1/pdp1dasm.cpp @@ -19,7 +19,7 @@ inline void pdp1_disassembler::ea() u32 pdp1_disassembler::opcode_alignment() const { - return 4; + return 1; } offs_t pdp1_disassembler::disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer ¶ms) @@ -290,5 +290,5 @@ offs_t pdp1_disassembler::disassemble(std::ostream &stream, offs_t pc, const dat //etime = 5; break; } - return 4; + return 1; } |