diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-09 00:07:38 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-09 00:07:38 -0700 |
commit | 975c9e3af869fb2905933c93c4d657e4d7187dad (patch) | |
tree | a9ded6cc5662d5ba19246d5b8637cbf0891238d3 /src/arch/micro_asm.py | |
parent | 523531a40e83b3023ae5911f48388e2490f16cba (diff) | |
download | gem5-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.py | 2 |
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: |