Microcode: Fix a silent typo error in the microcode assembler.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:07:38 +0000 (00:07 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 9 Oct 2008 07:07:38 +0000 (00:07 -0700)
src/arch/micro_asm.py

index 0982f6b89a69c4dcf0bdae01cae30172d7d31913..3433a80763ae766f6df1a6c129d1b048d06279dd 100644 (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: