diff options
| author | Marcus Huderle <huderlem@gmail.com> | 2017-09-07 19:59:58 -0700 |
|---|---|---|
| committer | Marcus Huderle <huderlem@gmail.com> | 2017-09-07 20:49:20 -0700 |
| commit | 023bacc23fa0e400ca7ae5b7c9e507f6a6b87c8b (patch) | |
| tree | 493162a4bdadd9e47a35cbf84a13f846d8aee188 /data/unknown | |
| parent | 6e9c8b1e7c0e938d4c477e0c5237a2ac0b009924 (diff) | |
Move data and code out of main.asm
Diffstat (limited to 'data/unknown')
| -rwxr-xr-x | data/unknown/unused_9800.asm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/data/unknown/unused_9800.asm b/data/unknown/unused_9800.asm new file mode 100755 index 0000000..f87722a --- /dev/null +++ b/data/unknown/unused_9800.asm @@ -0,0 +1,19 @@ +macro_9800: MACRO
+x = 0
+rept \1
+y = 0
+rept $100 / \1
+ db (x + y) & $ff
+y = y + \1
+endr
+x = x + 1
+endr
+endm
+
+Data_9800:
+
+w = $100
+rept 8
+ macro_9800 w
+w = w >> 1
+endr
|
