diff options
Diffstat (limited to 'src/devices/cpu/pdp1/pdp1.cpp')
-rw-r--r-- | src/devices/cpu/pdp1/pdp1.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/pdp1/pdp1.cpp b/src/devices/cpu/pdp1/pdp1.cpp index ded99a2d80d..ef7e5524399 100644 --- a/src/devices/cpu/pdp1/pdp1.cpp +++ b/src/devices/cpu/pdp1/pdp1.cpp @@ -380,7 +380,7 @@ const device_type PDP1 = &device_creator<pdp1_device>; -pdp1_device::pdp1_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +pdp1_device::pdp1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : cpu_device(mconfig, PDP1, "PDP1", tag, owner, clock, "pdp1_cpu", __FILE__) , m_program_config("program", ENDIANNESS_BIG, 32, 18, 0) { @@ -412,7 +412,7 @@ void pdp1_device::device_config_complete() } -offs_t pdp1_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) +offs_t pdp1_device::disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) { extern CPU_DISASSEMBLE( pdp1 ); return CPU_DISASSEMBLE_NAME(pdp1)(this, buffer, pc, oprom, opram, options); @@ -772,7 +772,7 @@ void pdp1_device::device_reset() except cal and jda, and with the addition of jmp and jsp) * 2 for memory reference instructions */ -static const UINT8 instruction_kind[32] = +static const uint8_t instruction_kind[32] = { /* and ior xor xct cal/jda */ 0, 3, 3, 3, 3, 0, 0, 2, |