diff options
author | 2008-11-23 02:06:51 +0000 | |
---|---|---|
committer | 2008-11-23 02:06:51 +0000 | |
commit | 2b5f8f5f0e9a6eb9397ec9a573183f673c40477e (patch) | |
tree | 9304d26d40913e66f109bd76c704771e69c52e5e /src/emu/cpu/pdp1/pdp1dasm.c | |
parent | 3601d8880cbea5cdb9e1ebe734f1ae98106d66ca (diff) |
Removed cpu_read_byte/cpu_write_byte. Fixed a few lingering compiler
issues. Fixed Z8000 crash.
Diffstat (limited to 'src/emu/cpu/pdp1/pdp1dasm.c')
-rw-r--r-- | src/emu/cpu/pdp1/pdp1dasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/pdp1/pdp1dasm.c b/src/emu/cpu/pdp1/pdp1dasm.c index 3c0ca1b0d4d..9b7a9322d51 100644 --- a/src/emu/cpu/pdp1/pdp1dasm.c +++ b/src/emu/cpu/pdp1/pdp1dasm.c @@ -8,13 +8,13 @@ static int y; INLINE void ea (void) { - while (1) +/* while (1) { if (ib == 0) return; ib = (READ_PDP_18BIT (y) >> 12) & 1; y = READ_PDP_18BIT (y) & 07777; - } + }*/ } #define IN if (ib) sprintf(buffer+strlen(buffer)," i") |