X86: Make the microcode assembler recognize r8-r15.

This commit is contained in:
Gabe Black 2009-02-25 10:17:43 -08:00
parent fcad6e3b13
commit dadc30b0a4

View 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):