diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2018-01-11 13:51:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-11 13:51:45 -0600 |
commit | 2b56f43fce75871f2be993d43b483ceefd0bfc0f (patch) | |
tree | 6fefa6a95a940c731ce7e551d1bc5c00a2626db0 /asm/macros/asm.inc | |
parent | a51b95150ba86a3982f613886471626f742aeacd (diff) | |
parent | e7672a1aeb5e42d6f4e416ede9f6220122d11743 (diff) |
Merge branch 'master' into assert
Diffstat (limited to 'asm/macros/asm.inc')
-rw-r--r-- | asm/macros/asm.inc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/asm/macros/asm.inc b/asm/macros/asm.inc deleted file mode 100644 index 26b2707ca..000000000 --- a/asm/macros/asm.inc +++ /dev/null @@ -1,17 +0,0 @@ - .ifndef GUARD_ASM_MACROS_ASM_INC - .set GUARD_ASM_MACROS_ASM_INC, 1 - - .macro inc x - .set \x, \x + 1 - .endm - - .macro enum_start x=0 - .set __enum__, \x - .endm - - .macro enum constant - .equiv \constant, __enum__ - inc __enum__ - .endm - - .endif @ GUARD_ASM_MACROS_ASM_INC |