mdb: disassembly fix for short 8-bit values
This commit is contained in:
parent
a78608ec86
commit
3e3d627b25
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ PRIVATE opcode_pt rm;
|
||||||
|
|
||||||
PRIVATE su8_pt get8s()
|
PRIVATE su8_pt get8s()
|
||||||
{
|
{
|
||||||
u8_t got;
|
su8_pt got;
|
||||||
|
|
||||||
if ((got = get8()) > MAX_SIGNED_CHAR)
|
if ((got = get8()) > MAX_SIGNED_CHAR)
|
||||||
got -= (MAX_UNSIGNED_CHAR + 1);
|
got -= (MAX_UNSIGNED_CHAR + 1);
|
||||||
|
|
Loading…
Reference in a new issue