4cade/src/demo/wavy.navy.a

38 lines
657 B
Plaintext
Raw Normal View History

2021-10-02 03:23:48 +00:00
;license:MIT
2022-09-27 17:20:04 +00:00
;(c) 2021-2022 by qkumba
2021-10-02 03:23:48 +00:00
!cpu 6502
2022-10-01 00:04:02 +00:00
!to "build/DEMO/WAVY.NAVY#060300",plain
2021-10-02 03:23:48 +00:00
*=$300
!source "src/constants.a" ; no code in these
!source "src/macros.a"
2021-10-02 03:23:48 +00:00
2022-09-27 17:20:04 +00:00
+ENABLE_ACCEL_LC
2022-09-10 05:36:52 +00:00
+LOAD_XSINGLE title
2021-10-02 03:23:48 +00:00
lda #$60
sta $505d
jsr $800 ; decompress
ldx #5
2022-09-27 17:20:04 +00:00
- lda $100, x
2021-10-02 03:23:48 +00:00
sta $09E8, x
sta $1547, x
dex
bpl -
inx
stx $6B22
stx $084C
2022-09-10 05:36:52 +00:00
+DISABLE_ACCEL
2021-10-02 03:23:48 +00:00
jmp $800
2022-09-10 05:36:52 +00:00
title !byte x_e-x_b
x_b !text "WAVY.NAVY"
x_e
2021-10-02 03:23:48 +00:00
!if * > $3F0 {
!error "code is too large, ends at ", *
}