projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
223fc41
)
X86: Let the microassembler know about the microcode only H segment.
author
Gabe Black
<gblack@eecs.umich.edu>
Mon, 13 Oct 2008 03:17:38 +0000
(20:17 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Mon, 13 Oct 2008 03:17:38 +0000
(20:17 -0700)
src/arch/x86/isa/microasm.isa
patch
|
blob
|
history
diff --git
a/src/arch/x86/isa/microasm.isa
b/src/arch/x86/isa/microasm.isa
index d7b008145c4ee395edd4ae83f06123e75b67f2a3..75e1dc52436595fb72a5eb59150efd3975ddf1ed 100644
(file)
--- 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.