diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 20:44:11 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 20:44:11 -0700 |
commit | 6074b1abf2e235f9a5d3ad78879a805ca335dc0e (patch) | |
tree | 67640c9b80cec42bc70728c7d13195b0cd1e4df9 /src/arch/x86/isa/microasm.isa | |
parent | 6b46e5204d52c8e46b48541d5112f7e9a1cadc43 (diff) | |
download | gem5-6074b1abf2e235f9a5d3ad78879a805ca335dc0e.tar.xz |
X86: Implement local labels for the ROM that actually refer into the ROM.
Diffstat (limited to 'src/arch/x86/isa/microasm.isa')
-rw-r--r-- | src/arch/x86/isa/microasm.isa | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/x86/isa/microasm.isa b/src/arch/x86/isa/microasm.isa index 29ec6dc94..81aa1dafe 100644 --- a/src/arch/x86/isa/microasm.isa +++ b/src/arch/x86/isa/microasm.isa @@ -188,6 +188,11 @@ let {{ assembler.symbols["rom_label"] = rom_labeler + def rom_local_labeler(labelStr): + return "romMicroPC(RomLabels::label_%s)" % labelStr + + assembler.symbols["rom_local_label"] = rom_local_labeler + def stack_index(index): return "(NUM_FLOATREGS + (((%s) + 8) %% 8))" % index |