diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2018-01-11 13:49:54 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-11 13:49:54 -0600 |
commit | e7672a1aeb5e42d6f4e416ede9f6220122d11743 (patch) | |
tree | 8500f80360da733e7fb8105820d03eb0cd558d34 /asm/macros/asm.inc | |
parent | 4ffcd640b3c7962ba918b544a5a7474198e1e029 (diff) | |
parent | 4763fccf6dae7ee1bf9f40973fce5934076a9ee8 (diff) |
Merge pull request #520 from camthesaxman/makefile
refactor build system
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 |