diff options
Diffstat (limited to 'cpu/m32r.opc')
-rw-r--r-- | cpu/m32r.opc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/m32r.opc b/cpu/m32r.opc index afe12eb..2459fec 100644 --- a/cpu/m32r.opc +++ b/cpu/m32r.opc @@ -182,8 +182,8 @@ parse_slo16 (CGEN_CPU_DESC cd, { value &= 0xffff; if (value & 0x8000) - value |= ~0xffff; - } + value = ((value & 0xffff) ^ 0x8000) - 0x8000; + } *valuep = value; return errmsg; } |