| Previous | 199869 Revisions | Next |
| r21342 Friday 22nd February, 2013 at 21:05:31 UTC by Oliver Stöneberg |
|---|
| fixed uninitialized variables in src/emu/cpu/hd61700/hd61700.c (nw) |
| [src/emu/cpu/hd61700] | hd61700.c |
| r21341 | r21342 | |
|---|---|---|
| 101 | 101 | |
| 102 | 102 | hd61700_cpu_device::hd61700_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 103 | 103 | : cpu_device(mconfig, HD61700, "HD61700", tag, owner, clock), |
| 104 | m_program_config("program", ENDIANNESS_BIG, 16, 18, -1) | |
| 104 | m_program_config("program", ENDIANNESS_BIG, 16, 18, -1), | |
| 105 | m_ppc(0x0000), | |
| 106 | m_curpc(0x0000), | |
| 107 | m_pc(0), | |
| 108 | m_flags(0) | |
| 105 | 109 | { |
| 106 | 110 | // ... |
| 107 | 111 | } |
| Previous | 199869 Revisions | Next |