Microcode: Fix a silent typo error in the microcode assembler.
This commit is contained in:
parent
523531a40e
commit
975c9e3af8
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ def handle_statement(parser, container, statement):
|
|||
try:
|
||||
for label in statement.labels:
|
||||
container.labels[label.text] = microop
|
||||
if label.extern:
|
||||
if label.is_extern:
|
||||
container.externs[label.text] = microop
|
||||
container.add_microop(statement.mnemonic, microop)
|
||||
except:
|
||||
|
|
Loading…
Reference in a new issue