X86: Make the microcode assembler recognize r8-r15.
This commit is contained in:
parent
fcad6e3b13
commit
dadc30b0a4
1 changed files with 2 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue