diff options
Diffstat (limited to 'data/unused/unused_9800.asm')
-rwxr-xr-x | data/unused/unused_9800.asm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/data/unused/unused_9800.asm b/data/unused/unused_9800.asm new file mode 100755 index 0000000..f87722a --- /dev/null +++ b/data/unused/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
|