From a2d9aae3c3dae1ffdd62eb91d2318758772684dc Mon Sep 17 00:00:00 2001 From: David Hashe Date: Mon, 20 Jul 2015 09:15:18 -0500 Subject: x86: x86 instruction-implementation bug fixes Added explicit data sizes and an opcode type for correct execution. --- src/arch/x86/isa/insts/system/segmentation.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/arch/x86/isa/insts/system/segmentation.py') diff --git a/src/arch/x86/isa/insts/system/segmentation.py b/src/arch/x86/isa/insts/system/segmentation.py index 53b6908ed..3c8648127 100644 --- a/src/arch/x86/isa/insts/system/segmentation.py +++ b/src/arch/x86/isa/insts/system/segmentation.py @@ -1,4 +1,5 @@ # Copyright (c) 2007 The Hewlett-Packard Development Company +# Copyright (c) 2012-2013 AMD # All rights reserved. # # The license below extends only to copyright in the software and shall @@ -78,7 +79,7 @@ def macroop LGDT_16_M # Get the base ld t2, seg, sib, 'adjustedDisp + 2', dataSize=4 zexti t2, t2, 23, dataSize=8 - wrbase tsg, t2 + wrbase tsg, t2, dataSize=8 wrlimit tsg, t1 }; @@ -139,7 +140,7 @@ def macroop LIDT_16_M # Get the base ld t2, seg, sib, 'adjustedDisp + 2', dataSize=4 zexti t2, t2, 23, dataSize=8 - wrbase idtr, t2 + wrbase idtr, t2, dataSize=8 wrlimit idtr, t1 }; -- cgit v1.2.3