summaryrefslogtreecommitdiff
path: root/src/arch/micro_asm.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-09 00:07:38 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-09 00:07:38 -0700
commit975c9e3af869fb2905933c93c4d657e4d7187dad (patch)
treea9ded6cc5662d5ba19246d5b8637cbf0891238d3 /src/arch/micro_asm.py
parent523531a40e83b3023ae5911f48388e2490f16cba (diff)
downloadgem5-975c9e3af869fb2905933c93c4d657e4d7187dad.tar.xz
Microcode: Fix a silent typo error in the microcode assembler.
Diffstat (limited to 'src/arch/micro_asm.py')
-rw-r--r--src/arch/micro_asm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/micro_asm.py b/src/arch/micro_asm.py
index 0982f6b89..3433a8076 100644
--- a/src/arch/micro_asm.py
+++ b/src/arch/micro_asm.py
@@ -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: