summaryrefslogtreecommitdiff
path: root/macros/data.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-06-24 23:22:50 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2018-06-24 23:22:50 -0400
commit67d1364c7acfd5e8e2256080e16a14cfa59a5abc (patch)
treefcf1bcbc2990b8fdeb5d63159d15382a8bdf719a /macros/data.asm
parent91f914718a263839daef24d44eda857bfc7cca95 (diff)
Fix triple newlines left over from removing address comments
Diffstat (limited to 'macros/data.asm')
-rw-r--r--macros/data.asm5
1 files changed, 0 insertions, 5 deletions
diff --git a/macros/data.asm b/macros/data.asm
index ad2d9b8ef..08a23ad29 100644
--- a/macros/data.asm
+++ b/macros/data.asm
@@ -2,7 +2,6 @@
percent EQUS "* $ff / 100"
-
; Constant data (db, dw, dl) macros
dwb: MACRO
@@ -87,7 +86,6 @@ dba_pic: MACRO ; dbw bank, address
dw \1
ENDM
-
dbpixel: MACRO
if _NARG >= 4
; x tile, x pxl, y tile, y pxl
@@ -103,14 +101,12 @@ dsprite: MACRO
db (\1 * 8) % $100 + \2, (\3 * 8) % $100 + \4, \5, \6
ENDM
-
menu_coords: MACRO
; x1, y1, x2, y2
db \2, \1 ; start coords
db \4, \3 ; end coords
ENDM
-
bcd: MACRO
rept _NARG
dn ((\1) % 100) / 10, (\1) % 10
@@ -118,7 +114,6 @@ rept _NARG
endr
ENDM
-
sine_table: MACRO
; \1 samples of sin(x) from x=0 to x<32768 (pi radians)
x = 0