From f8603fa1204d1ea16e382d0ce6bc4059dbea9661 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 17 Nov 2014 00:20:01 -0800 Subject: x86: Fix some bugs in the real mode far jmp instruction. The far pointer should be shifted right to get the selector value, not left. Also, when calculating the width of the offset, the wrong register was used in one spot. --- src/arch/x86/isa/insts/general_purpose/control_transfer/jump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/arch/x86/isa/insts/general_purpose/control_transfer/jump.py b/src/arch/x86/isa/insts/general_purpose/control_transfer/jump.py index 74cfcfccd..6999b913d 100644 --- a/src/arch/x86/isa/insts/general_purpose/control_transfer/jump.py +++ b/src/arch/x86/isa/insts/general_purpose/control_transfer/jump.py @@ -162,11 +162,11 @@ def macroop JMP_FAR_REAL_I limm t3, dsz, dataSize=8 slli t3, t3, 3, dataSize=8 # Get the selector into t1. - sll t1, t2, t3, dataSize=8 + srl t1, t2, t3, dataSize=8 mov t1, t0, t1, dataSize=2 # And get the offset into t2 mov t2, t0, t2 - slli t3, t3, 4, dataSize=8 + slli t3, t1, 4, dataSize=8 wrsel cs, t1, dataSize=2 wrbase cs, t3 wrip t0, t2, dataSize=asz -- cgit v1.2.3