diff options
author | red031000 <rubenru09@aol.com> | 2021-02-05 14:38:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 14:38:41 +0000 |
commit | 572eddf4890ecbcd1b0e06c02046e29ddd58526f (patch) | |
tree | 5a23601e6c289690478cc4469be9bbf15f73c245 /include/macros.inc | |
parent | 3f486290f6a006af601b41eb469ac72bed1c91d1 (diff) | |
parent | a2c689698a8b16cc72615bd020f938ebe104b87e (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.inc | 5 |
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
|