Microcode: Fix a silent typo error in the microcode assembler.

This commit is contained in:
Gabe Black 2008-10-09 00:07:38 -07:00
parent 523531a40e
commit 975c9e3af8

View file

@ -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: