diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2021-02-05 02:00:25 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2021-02-05 02:00:25 -0500 |
commit | a2c689698a8b16cc72615bd020f938ebe104b87e (patch) | |
tree | 5a23601e6c289690478cc4469be9bbf15f73c245 /include/macros.inc | |
parent | 3f486290f6a006af601b41eb469ac72bed1c91d1 (diff) |
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
|