X86: Make the microcode assembler recognize r8-r15.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 25 Feb 2009 18:17:43 +0000 (10:17 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 25 Feb 2009 18:17:43 +0000 (10:17 -0800)
src/arch/x86/isa/microasm.isa

index d1025b1376e502ea3bebbbecec2274580975b8ef..fe1d38ff13e51875aad17e96a3adbd7c9ae930f9 100644 (file)
@@ -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):