diff options
author | Ian C <ianc@noddybox.co.uk> | 2006-08-27 01:09:44 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2006-08-27 01:09:44 +0000 |
commit | 5842d9210a6718acb4b072dfaa2550245ed7f464 (patch) | |
tree | 30d667b435848b9f1f9098de871c197343b87c99 /z80_decode.c | |
parent | 9a6bfb8f8aab0e4811c7171475f2b763048df431 (diff) |
Fixed LD (nnnn),A
Diffstat (limited to 'z80_decode.c')
-rw-r--r-- | z80_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/z80_decode.c b/z80_decode.c index b692615..1433b30 100644 --- a/z80_decode.c +++ b/z80_decode.c @@ -2039,7 +2039,7 @@ void Z80_Decode(Z80 *cpu, Z80Byte opcode) case 0x32: /* LD (nnnn),A */ TSTATE(13); - POKEW(FETCH_WORD,cpu->AF.b[HI]); + POKE(FETCH_WORD,cpu->AF.b[HI]); break; case 0x33: /* INC SP */ |