summaryrefslogtreecommitdiff
path: root/asm/macros/asm.inc
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2018-01-10 23:20:32 -0600
committercamthesaxman <cameronghall@cox.net>2018-01-10 23:20:32 -0600
commitb5667bd097347c1d3958fa8f9eb6d39788c0ff50 (patch)
tree29aca119bf365256255da97e8e768cd9216688a8 /asm/macros/asm.inc
parentd4afe49b06a7ef2422839fcd0340c06c6a8e541b (diff)
refactor build system
Diffstat (limited to 'asm/macros/asm.inc')
-rw-r--r--asm/macros/asm.inc17
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