From 35e410bf30716112dddbaa17c1705484c9deafbe Mon Sep 17 00:00:00 2001 From: Justin Scofield <47263509+scawful@users.noreply.github.com> Date: Fri, 5 Aug 2022 08:08:14 -0400 Subject: [PATCH] Add mosaic transition assembly source --- assets/asm/mosaic_change.asm | 53 ++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 assets/asm/mosaic_change.asm diff --git a/assets/asm/mosaic_change.asm b/assets/asm/mosaic_change.asm new file mode 100644 index 00000000..515e36be --- /dev/null +++ b/assets/asm/mosaic_change.asm @@ -0,0 +1,53 @@ +org + JML AreaCheck + +AreaCheck: +{ + PHB : PHK : PLB + + TAX + LDA .pool, X + + BEQ .noMosaic1 + PLB + JML $02AAE5 + + .noMosaic1 + + LDX $8A + LDA .pool, X + + BEQ .noMosaic2 + PLB + JML $02AAE5 + + .noMosaic2 + + PLB + JML $02AAF4 + + .pool + ;LW + db $01, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + ;DW + db $01, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + ;SP + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 + db $00, $00, $00, $00, $00, $00, $00, $00 +} \ No newline at end of file