diff options
-rw-r--r-- | src/arch/x86/isa/insts/general_purpose/system_calls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/isa/insts/general_purpose/system_calls.py b/src/arch/x86/isa/insts/general_purpose/system_calls.py index b015c82fc..d6f1a39bf 100644 --- a/src/arch/x86/isa/insts/general_purpose/system_calls.py +++ b/src/arch/x86/isa/insts/general_purpose/system_calls.py @@ -79,8 +79,8 @@ def macroop SYSCALL_64 wrattr ss, t4 # Set the new rip. - rdval t7, lstar - wrip t0, t7 + rdval t7, lstar, dataSize=8 + wrip t0, t7, dataSize=8 # Mask the flags against sf_mask and leave RF turned off. rdval t3, sf_mask, dataSize=8 |