summaryrefslogtreecommitdiff
path: root/include/macros.inc
diff options
context:
space:
mode:
authorred031000 <rubenru09@aol.com>2021-02-05 14:38:41 +0000
committerGitHub <noreply@github.com>2021-02-05 14:38:41 +0000
commit572eddf4890ecbcd1b0e06c02046e29ddd58526f (patch)
tree5a23601e6c289690478cc4469be9bbf15f73c245 /include/macros.inc
parent3f486290f6a006af601b41eb469ac72bed1c91d1 (diff)
parenta2c689698a8b16cc72615bd020f938ebe104b87e (diff)
Merge pull request #316 from ProjectRevoTPP/asm_processor
port over and implement asm processor for NONMATCHINGS. thanks hondew!
Diffstat (limited to 'include/macros.inc')
-rw-r--r--include/macros.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/macros.inc b/include/macros.inc
new file mode 100644
index 00000000..eb060422
--- /dev/null
+++ b/include/macros.inc
@@ -0,0 +1,5 @@
+.macro glabel label
+ .global \label
+ .thumb
+ \label:
+.endm