diff options
author | 2014-04-07 06:04:18 +0000 | |
---|---|---|
committer | 2014-04-07 06:04:18 +0000 | |
commit | fec65e0b5766ade69e086d1c5b859d97494fce56 (patch) | |
tree | c22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/cpu/pdp1 | |
parent | 30d94e51c53f30187a1bc565ef33e4744319790e (diff) |
Cleanups and version bumpmame0153
Diffstat (limited to 'src/emu/cpu/pdp1')
-rw-r--r-- | src/emu/cpu/pdp1/pdp1.c | 1 | ||||
-rw-r--r-- | src/emu/cpu/pdp1/pdp1.h | 2 | ||||
-rw-r--r-- | src/emu/cpu/pdp1/tx0.c | 1 | ||||
-rw-r--r-- | src/emu/cpu/pdp1/tx0.h | 4 |
4 files changed, 3 insertions, 5 deletions
diff --git a/src/emu/cpu/pdp1/pdp1.c b/src/emu/cpu/pdp1/pdp1.c index c4a3d0f1a92..caf2db3f78e 100644 --- a/src/emu/cpu/pdp1/pdp1.c +++ b/src/emu/cpu/pdp1/pdp1.c @@ -1813,4 +1813,3 @@ void pdp1_device::pulse_start_clear() if (m_io_sc_callback) (*m_io_sc_callback)(this); } - diff --git a/src/emu/cpu/pdp1/pdp1.h b/src/emu/cpu/pdp1/pdp1.h index 303f62cd465..a0550080fbc 100644 --- a/src/emu/cpu/pdp1/pdp1.h +++ b/src/emu/cpu/pdp1/pdp1.h @@ -73,7 +73,7 @@ struct pdp1_reset_param_t class pdp1_device : public cpu_device - , public pdp1_reset_param_t + , public pdp1_reset_param_t { public: // construction/destruction diff --git a/src/emu/cpu/pdp1/tx0.c b/src/emu/cpu/pdp1/tx0.c index 459b2b3ee99..8649d8620c8 100644 --- a/src/emu/cpu/pdp1/tx0.c +++ b/src/emu/cpu/pdp1/tx0.c @@ -1068,4 +1068,3 @@ offs_t tx0_64kw_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 extern CPU_DISASSEMBLE( tx0_64kw ); return CPU_DISASSEMBLE_NAME(tx0_64kw)(this, buffer, pc, oprom, opram, options); } - diff --git a/src/emu/cpu/pdp1/tx0.h b/src/emu/cpu/pdp1/tx0.h index 7c4b4d65a56..198ffa694a2 100644 --- a/src/emu/cpu/pdp1/tx0.h +++ b/src/emu/cpu/pdp1/tx0.h @@ -96,8 +96,8 @@ protected: unsigned int m_run; /* processor is running */ unsigned int m_rim; /* processor is in read-in mode */ unsigned int m_cycle; /* 0 -> fetch */ - /* 1 -> execute (except for taken branches) */ - /* 2 -> extra execute cycle for SXA and ADO */ + /* 1 -> execute (except for taken branches) */ + /* 2 -> extra execute cycle for SXA and ADO */ unsigned int m_ioh; /* i-o halt: processor is executing an Input-Output Transfer wait */ unsigned int m_ios; /* i-o synchronizer: set on i-o operation completion */ |