diff options
Diffstat (limited to 'sim/sh/gencode.c')
-rw-r--r-- | sim/sh/gencode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/sh/gencode.c b/sim/sh/gencode.c index 9f5bcf0..f1601c5 100644 --- a/sim/sh/gencode.c +++ b/sim/sh/gencode.c @@ -1479,7 +1479,7 @@ op ppi_tab[] = "int Sx = DSP_R (x);", "int Sx_grd = GET_DSP_GRD (x);", "", - "res = Sx + 0x8000;", + "res = (Sx + 0x8000) & 0xffff0000;", "carry = (unsigned) res < (unsigned) Sx;", "res_grd = Sx_grd + carry;", "COMPUTE_OVERFLOW;", @@ -1512,7 +1512,7 @@ op ppi_tab[] = "int Sy = DSP_R (y);", "int Sy_grd = SIGN32 (Sy);", "", - "res = Sy + 0x8000;", + "res = (Sy + 0x8000) & 0xffff0000;", "carry = (unsigned) res < (unsigned) Sy;", "res_grd = Sy_grd + carry;", "COMPUTE_OVERFLOW;", |