projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fcad6e3
)
X86: Make the microcode assembler recognize r8-r15.
author
Gabe Black
<gblack@eecs.umich.edu>
Wed, 25 Feb 2009 18:17:43 +0000
(10:17 -0800)
committer
Gabe Black
<gblack@eecs.umich.edu>
Wed, 25 Feb 2009 18:17:43 +0000
(10:17 -0800)
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 d1025b1376e502ea3bebbbecec2274580975b8ef..fe1d38ff13e51875aad17e96a3adbd7c9ae930f9 100644
(file)
--- a/
src/arch/x86/isa/microasm.isa
+++ b/
src/arch/x86/isa/microasm.isa
@@
-138,7
+138,8
@@
let {{
# like the internal segment above
assembler.symbols["flatseg"] = "SEGMENT_REG_LS"
- for reg in ('ax', 'bx', 'cx', 'dx', 'sp', 'bp', 'si', 'di'):
+ for reg in ('ax', 'bx', 'cx', 'dx', 'sp', 'bp', 'si', 'di', \
+ '8', '9', '10', '11', '12', '13', '14', '15'):
assembler.symbols["r%s" % reg] = "INTREG_R%s" % reg.upper()
for reg in range(16):