diff options
Diffstat (limited to 'tools/asm-processor/tests/custom-prelude.s')
| -rw-r--r-- | tools/asm-processor/tests/custom-prelude.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/asm-processor/tests/custom-prelude.s b/tools/asm-processor/tests/custom-prelude.s new file mode 100644 index 0000000..75f955a --- /dev/null +++ b/tools/asm-processor/tests/custom-prelude.s @@ -0,0 +1,14 @@ +.set noat +.set noreorder +.set gp=64 + +.macro glabel label + .global \label + \label: +.endm + +.macro endlabel label + .global myendlabel + myendlabel: +.endm + |
