diff options
author | qeed <devnull@localhost> | 2013-05-02 10:40:45 -0400 |
---|---|---|
committer | qeed <devnull@localhost> | 2013-05-02 10:40:45 -0400 |
commit | 5dc9c7f443dde75530ffe5e17c2bbef12f466f91 (patch) | |
tree | 746bf7504a70233553bdd2d70dbbff145a92e609 /sys | |
parent | 78794f03dd0d15bae3f47102dad14bd76764f288 (diff) |
fixed operand size for ADD SP, n
Diffstat (limited to 'sys')
-rw-r--r-- | sys/src/games/gb/disasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/games/gb/disasm.c b/sys/src/games/gb/disasm.c index a40b75130..08e9b877a 100644 --- a/sys/src/games/gb/disasm.c +++ b/sys/src/games/gb/disasm.c @@ -497,7 +497,7 @@ static int operands[256] = { [0xE5] 0, [0xE6] 1, [0xE7] 0, - [0xE8] 0, + [0xE8] 1, [0xE9] 0, [0xEA] 2, [0xEB] 0, |