mirror of
https://github.com/a2-4am/4sports.git
synced 2025-01-11 07:29:58 +00:00
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
!cpu 6502
|
|
*=$8000
|
|
!to "build/NINE.MENS#068000",plain
|
|
|
|
!src "../common/src/constants.a"
|
|
!src "../common/src/macros.a"
|
|
|
|
jmp start
|
|
|
|
compressed_data
|
|
!bin "src/OBJ.X"
|
|
FORWARD_DECRUNCHING = 1
|
|
SHOW_PROGRESS_DURING_DECRUNCH = 1
|
|
kExoProgressWidth = 18 ; depends on total size, max 38
|
|
!src "../common/src/exodecrunch.a"
|
|
|
|
start
|
|
+INIT_MACHINE
|
|
!if * != $BC5B {
|
|
!serious "Adjust prelaunch to patch JSR at ", *, " to JMP"
|
|
}
|
|
jsr decrunch ; compressed data contains target address
|
|
bit GFXMODE
|
|
bit PAGE1
|
|
bit HIRES
|
|
bit FULLGFX
|
|
jsr $900
|
|
ldx #$20
|
|
ldy #$00
|
|
@a lda $9000, y
|
|
@b sta $2000, y
|
|
iny
|
|
bne @a
|
|
inc @a+2
|
|
inc @b+2
|
|
dex
|
|
bne @a
|
|
jsr $906
|
|
bit CLEARKBD
|
|
jsr PRODOS_MLI
|
|
!byte CMD_QUIT
|
|
!word +
|
|
+ !byte 4
|
|
|
|
get_crunched_byte
|
|
lda compressed_data
|
|
inc get_crunched_byte+1
|
|
bne +
|
|
inc get_crunched_byte+2
|
|
+ rts
|