From: Gabe Black Date: Mon, 13 Oct 2008 03:17:38 +0000 (-0700) Subject: X86: Let the microassembler know about the microcode only H segment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e9158d763a34d96147d62d08f6ccc4e8ba3308e5;p=gem5.git X86: Let the microassembler know about the microcode only H segment. --- diff --git a/src/arch/x86/isa/microasm.isa b/src/arch/x86/isa/microasm.isa index d7b008145..75e1dc524 100644 --- a/src/arch/x86/isa/microasm.isa +++ b/src/arch/x86/isa/microasm.isa @@ -81,7 +81,7 @@ let {{ for num in range(7): assembler.symbols["ufp%d" % num] = "FLOATREG_MICROFP(%d)" % num # Add in symbols for the segment descriptor registers - for letter in ("C", "D", "E", "F", "G", "S"): + for letter in ("C", "D", "E", "F", "G", "H", "S"): assembler.symbols["%ss" % letter.lower()] = "SEGMENT_REG_%sS" % letter # Add in symbols for the various checks of segment selectors.