mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-05 21:34:30 +00:00
mist: added gear location
way more trouble than it was worth
This commit is contained in:
parent
dbd1edd1de
commit
00bd091493
@ -72,7 +72,9 @@ mist_graphics.inc: \
|
||||
spaceship_far_e.png spaceship_far_n.png \
|
||||
red_book_open.png red_book_static.png red_book_static2.png \
|
||||
tree2_n.png \
|
||||
tree5_n.png tree5_e.png
|
||||
tree5_n.png tree5_e.png \
|
||||
gear_n.png gear_w.png gear_s.png \
|
||||
gear_base_n.png
|
||||
$(PNG2RLE) asm m_link_book.png link_book_rle > mist_graphics.inc
|
||||
$(PNG2RLE) asm dock_n.png dock_n_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm dock_s.png dock_s_rle >> mist_graphics.inc
|
||||
@ -115,6 +117,11 @@ mist_graphics.inc: \
|
||||
$(PNG2RLE) asm tree2_n.png tree2_n_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm tree5_n.png tree5_n_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm tree5_e.png tree5_e_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm gear_n.png gear_n_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm gear_s.png gear_s_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm gear_w.png gear_w_rle >> mist_graphics.inc
|
||||
$(PNG2RLE) asm gear_base_n.png gear_base_n_rle >> mist_graphics.inc
|
||||
|
||||
|
||||
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 7.1 KiB |
BIN
mist/gear_base_n.png
Normal file
BIN
mist/gear_base_n.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 509 B |
BIN
mist/gear_n.png
Normal file
BIN
mist/gear_n.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 480 B |
BIN
mist/gear_s.png
Normal file
BIN
mist/gear_s.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 529 B |
BIN
mist/gear_w.png
Normal file
BIN
mist/gear_w.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 566 B |
@ -1,5 +1,5 @@
|
||||
5 HOME
|
||||
10 PRINT " LOADING MIST V0.1"
|
||||
10 PRINT " LOADING MIST V0.2"
|
||||
90 PRINT
|
||||
100 PRINT" ______"
|
||||
100 PRINT" A \/\/\/ SOFTWARE PRODUCTION"
|
||||
|
56
mist/mist.s
56
mist/mist.s
@ -815,7 +815,8 @@ locations:
|
||||
.word location4, location5, location6, location7
|
||||
.word location8, location9, location10,location11
|
||||
.word location12,location13,location14,location15
|
||||
.word location16,location17,location18
|
||||
.word location16,location17,location18,location19
|
||||
.word location20
|
||||
|
||||
; myst linking book
|
||||
location0:
|
||||
@ -880,31 +881,31 @@ location2:
|
||||
|
||||
; dock steps
|
||||
location3:
|
||||
.byte $ff ; north exit
|
||||
.byte 19 ; north exit
|
||||
.byte $ff ; south exit
|
||||
.byte 2 ; east exit
|
||||
.byte 4 ; west exit
|
||||
.byte $ff ; north exit_dir
|
||||
.byte DIRECTION_N ; north exit_dir
|
||||
.byte $ff ; south exit_dir
|
||||
.byte DIRECTION_S ; east exit_dir
|
||||
.byte DIRECTION_S ; west exit_dir
|
||||
.byte $ff ; special exit
|
||||
.word $0000 ; north bg
|
||||
.word gear_base_n_rle ; north bg
|
||||
.word $0000 ; south bg
|
||||
.word $0000 ; east bg
|
||||
.word dock_steps_w_rle ; west bg
|
||||
.byte $ff,$ff ; special x
|
||||
.byte $ff,$ff ; special y
|
||||
.word $0000 ; special function
|
||||
.byte BG_WEST ; only west
|
||||
.byte BG_WEST|BG_NORTH
|
||||
|
||||
; above dock path
|
||||
location4:
|
||||
.byte $ff ; north exit
|
||||
.byte 20 ; north exit
|
||||
.byte 5 ; south exit
|
||||
.byte 2 ; east exit
|
||||
.byte $ff ; west exit
|
||||
.byte $ff ; north exit_dir
|
||||
.byte DIRECTION_N ; north exit_dir
|
||||
.byte DIRECTION_S ; south exit_dir
|
||||
.byte DIRECTION_S ; east exit_dir
|
||||
.byte $ff ; west exit_dir
|
||||
@ -1202,6 +1203,47 @@ location18:
|
||||
.word $0000 ; special function
|
||||
.byte BG_NORTH | BG_EAST
|
||||
|
||||
; gear
|
||||
location19:
|
||||
.byte $ff ; north exit
|
||||
.byte 4 ; south exit
|
||||
.byte $ff ; east exit
|
||||
.byte $ff ; west exit
|
||||
.byte $ff ; north exit_dir
|
||||
.byte DIRECTION_E ; south exit_dir
|
||||
.byte $ff ; east exit_dir
|
||||
.byte $ff ; west exit_dir
|
||||
.byte $00 ; special exit
|
||||
.word gear_n_rle ; north bg
|
||||
.word gear_s_rle ; south bg
|
||||
.word $0000 ; east bg
|
||||
.word gear_w_rle ; west bg
|
||||
.byte 5,10 ; special x
|
||||
.byte 29,35 ; special y
|
||||
.word click_switch-1 ; special function
|
||||
.byte BG_NORTH | BG_SOUTH | BG_WEST
|
||||
|
||||
; gear base
|
||||
location20:
|
||||
.byte 19 ; north exit
|
||||
.byte $ff ; south exit
|
||||
.byte 3 ; east exit
|
||||
.byte $ff ; west exit
|
||||
.byte DIRECTION_N ; north exit_dir
|
||||
.byte $ff ; south exit_dir
|
||||
.byte DIRECTION_E ; east exit_dir
|
||||
.byte $ff ; west exit_dir
|
||||
.byte $ff ; special exit
|
||||
.word gear_base_n_rle ; north bg
|
||||
.word $0000 ; south bg
|
||||
.word above_dock_e_rle ; east bg
|
||||
.word $0000 ; west bg
|
||||
.byte $ff,$ff ; special x
|
||||
.byte $ff,$ff ; special y
|
||||
.word $0000 ; special function
|
||||
.byte BG_NORTH | BG_EAST
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -389,25 +389,25 @@ dock_steps_w_rle: .byte $28 ; ysize=48
|
||||
above_dock_e_rle: .byte $28 ; ysize=48
|
||||
.byte $A9,$FF, $8F, $A0,$10,$FF, $88, $AC,$FF, $5F, $A9,$FF
|
||||
.byte $88, $A0,$10,$FF, $88, $A9,$FF, $5F,$5F, $55,$55, $AA,$FF
|
||||
.byte $88, $AD,$FF, $7F,$7F, $88, $A4,$7F, $A3,$77, $57
|
||||
.byte $A5,$55, $AA,$FF, $88, $A7,$7F, $A5,$77, $87, $A5,$88
|
||||
.byte $A3,$77, $57, $A7,$55, $A4,$7F, $A6,$77, $78, $87
|
||||
.byte $AC,$77, $78,$78, $88, $78, $A3,$77, $55,$55, $90
|
||||
.byte $95, $A5,$55, $AB,$77, $88, $AE,$77, $88, $77
|
||||
.byte $90,$90, $77, $D7, $8D, $85, $88,$88, $85
|
||||
.byte $A3,$55, $AB,$77, $88, $AE,$77, $88, $77, $D9,$D9
|
||||
.byte $8D, $A7,$88, $85, $55, $AB,$77, $78, $87
|
||||
.byte $AA,$77, $90,$90, $D7, $D8, $8D, $AB,$88, $85
|
||||
.byte $AC,$77, $88, $77,$77, $88, $A7,$77, $D9,$D9, $8D
|
||||
.byte $AE,$88, $AC,$77, $88, $77,$77, $88,$88, $A3,$77, $D7
|
||||
.byte $DD, $8D, $A0,$11,$88, $55, $97, $AB,$77, $88
|
||||
.byte $77, $58,$58, $D7,$D7, $8D,$8D, $A0,$11,$88, $78,$78, $55,$55
|
||||
.byte $99, $97,$97, $A8,$77, $78, $77, $55,$55, $8D
|
||||
.byte $A0,$12,$88, $78, $A3,$77, $55,$55, $59, $A4,$99, $97
|
||||
.byte $A4,$77, $87, $F8, $57, $55,$55, $A0,$10,$88, $78,$78
|
||||
.byte $A5,$77, $55,$55, $59, $A6,$99, $77,$77, $88, $58
|
||||
.byte $88, $AD,$FF, $EF,$EF, $88, $A4,$EF, $A3,$EE, $5E
|
||||
.byte $A5,$55, $AA,$FF, $88, $A7,$EF, $A5,$EE, $8E, $A5,$88
|
||||
.byte $A3,$EE, $5E, $A7,$55, $A4,$EF, $A6,$EE, $E8, $8E
|
||||
.byte $AC,$EE, $E8,$E8, $88, $E8, $A3,$EE, $55,$55, $90
|
||||
.byte $95, $A5,$55, $AB,$EE, $88, $AE,$EE, $88, $EE
|
||||
.byte $90,$90, $EE, $DE, $8D, $85, $88,$88, $85
|
||||
.byte $A3,$55, $AB,$EE, $88, $AE,$EE, $88, $EE, $D9,$D9
|
||||
.byte $8D, $A7,$88, $85, $55, $AB,$EE, $E8, $8E
|
||||
.byte $AA,$EE, $90,$90, $DE, $D8, $8D, $AB,$88, $85
|
||||
.byte $AC,$EE, $88, $EE,$EE, $88, $A7,$EE, $D9,$D9, $8D
|
||||
.byte $AE,$88, $AC,$EE, $88, $EE,$EE, $88,$88, $A3,$EE, $DE
|
||||
.byte $DD, $8D, $A0,$11,$88, $55, $9E, $AB,$EE, $88
|
||||
.byte $EE, $58,$58, $DE,$DE, $8D,$8D, $A0,$11,$88, $78,$78, $55,$55
|
||||
.byte $99, $9E,$9E, $A8,$EE, $E8, $EE, $55,$55, $8D
|
||||
.byte $A0,$12,$88, $78, $A3,$77, $55,$55, $59, $A4,$99, $9E
|
||||
.byte $A4,$EE, $8E, $F8, $5E, $55,$55, $A0,$10,$88, $78,$78
|
||||
.byte $A5,$77, $55,$55, $59, $A6,$99, $EE,$EE, $88, $58
|
||||
.byte $F5,$F5, $5F, $F8, $AE,$88, $78, $A8,$77, $A3,$55
|
||||
.byte $A6,$99, $97, $87, $58, $F5, $A3,$FF, $55
|
||||
.byte $A6,$99, $9E, $8E, $58, $F5, $A3,$FF, $55
|
||||
.byte $5F, $55, $58, $A8,$88, $78, $AB,$77, $A3,$55
|
||||
.byte $22, $A6,$99, $88, $55, $A4,$F5, $55,$55, $F5,$F5
|
||||
.byte $55, $A5,$88, $78, $AD,$77, $55,$55, $22, $A7,$99
|
||||
@ -2318,3 +2318,170 @@ tree5_e_rle: .byte $28 ; ysize=48
|
||||
.byte $C4, $A5,$44, $99, $00, $A4,$44, $CC, $44,$44
|
||||
.byte $A9,$CC, $C4, $AA,$44, $88, $99, $44,$44, $CC,$CC
|
||||
.byte $A1
|
||||
gear_n_rle: .byte $28 ; ysize=48
|
||||
.byte $A0,$23,$FF, $A4,$5F, $A0,$1F,$FF, $0F, $A8,$55, $A0,$1F,$FF, $00
|
||||
.byte $A8,$55, $A0,$1F,$FF, $00, $A8,$55, $A0,$17,$FF, $5F, $55
|
||||
.byte $5F, $A5,$FF, $00, $A8,$55, $A0,$16,$FF, $5F, $A3,$55
|
||||
.byte $A5,$FF, $00, $A8,$55, $A0,$15,$FF, $A6,$55, $A3,$FF, $5F
|
||||
.byte $50, $A8,$55, $5F, $A0,$13,$FF, $A7,$55, $5F, $AD,$55
|
||||
.byte $A0,$13,$FF, $A0,$15,$55, $A0,$14,$FF, $A0,$14,$55, $A0,$15,$FF, $A0,$13,$55, $A0,$12,$FF
|
||||
.byte $0F,$0F, $FF, $A0,$13,$55, $AF,$FF, $5F, $50, $A3,$00
|
||||
.byte $50, $A8,$55, $A8,$05, $A3,$55, $AF,$FF, $A3,$55, $50,$50
|
||||
.byte $A7,$55, $05, $50, $A8,$55, $50,$50, $05, $A5,$FF
|
||||
.byte $5F,$5F, $A8,$EF, $AA,$55, $05, $50, $AD,$55, $A5,$EE
|
||||
.byte $55, $95, $9E, $A3,$EE, $DE, $9E,$9E, $59
|
||||
.byte $A9,$55, $05, $50, $A6,$55, $05,$05, $A6,$55, $A5,$EE
|
||||
.byte $55, $99, $06, $56, $5E, $EE, $DD
|
||||
.byte $EE,$EE, $A9,$55, $05, $50, $A4,$55, $00, $A5,$50
|
||||
.byte $00, $05, $A3,$55, $A5,$EE, $A3,$55, $D5, $DD
|
||||
.byte $EE, $DD, $A3,$EE, $95, $A7,$55, $00, $A3,$55
|
||||
.byte $00, $50, $A8,$55, $00, $05,$05, $A4,$EE, $9E
|
||||
.byte $D5, $DD, $0D,$0D, $DD, $EE, $9D, $A3,$99
|
||||
.byte $79, $75, $25, $A4,$55, $00, $A3,$55, $00
|
||||
.byte $50, $AA,$55, $50, $00, $EE,$EE, $9E, $99
|
||||
.byte $E9, $DD, $A3,$00, $DD, $99, $79, $07
|
||||
.byte $70, $77, $57, $25, $22, $A4,$55, $00
|
||||
.byte $55,$55, $00,$00, $55,$55, $85, $A5,$88, $85, $A3,$55
|
||||
.byte $50, $9E, $99, $E9, $EE,$EE, $DD, $A3,$00
|
||||
.byte $DD, $77, $07, $70, $77, $57, $25
|
||||
.byte $52, $00, $A4,$55, $00, $55,$55, $00, $55,$55
|
||||
.byte $85, $A7,$88, $85, $A3,$55, $E9, $EE,$EE, $4E
|
||||
.byte $44, $DD, $A3,$00, $DD, $00, $70, $77
|
||||
.byte $55, $22, $55,$55, $00,$00, $A3,$55, $00, $55,$55
|
||||
.byte $00, $55,$55, $A3,$88, $A3,$58, $A3,$88, $85, $55,$55
|
||||
.byte $EE, $CE, $4C, $44,$44, $DD, $00,$00, $D0
|
||||
.byte $DD, $70, $A4,$77, $72, $02,$02, $20, $25
|
||||
.byte $55,$55, $00, $55,$55, $00, $55,$55, $A3,$88, $A4,$55
|
||||
.byte $A3,$88, $55,$55, $CE, $4C, $CC,$CC, $44, $DD
|
||||
.byte $D0, $DD, $5D, $55, $00, $A3,$77, $07
|
||||
.byte $00,$00, $70, $77,$77, $72,$72, $20, $25,$25, $00
|
||||
.byte $55,$55, $A3,$88, $A4,$55, $A3,$88, $55,$55
|
||||
.byte $A1
|
||||
gear_s_rle: .byte $28 ; ysize=48
|
||||
.byte $A0,$72,$FF, $55, $FF, $55, $FF, $55, $A0,$1D,$FF
|
||||
.byte $8F, $A5,$FF, $55, $5F, $55, $5F, $55
|
||||
.byte $A0,$1D,$FF, $88, $A4,$FF, $5F, $A5,$55, $5F, $A0,$1C,$FF
|
||||
.byte $88, $A4,$FF, $A7,$55, $A0,$1C,$FF, $88, $A4,$FF, $F5
|
||||
.byte $00, $55, $50, $A3,$55, $A0,$1C,$FF, $88, $A5,$FF
|
||||
.byte $00, $F5, $00, $FF, $05, $F5, $A0,$1C,$FF
|
||||
.byte $88, $A5,$FF, $00, $5F, $00, $5F, $00
|
||||
.byte $5F, $A8,$FF, $A5,$EF, $AD,$EE, $88, $EE, $88
|
||||
.byte $A4,$EE, $5E, $00, $55, $00, $55, $00
|
||||
.byte $55, $A4,$EF, $A0,$17,$EE, $88,$88, $A3,$EE, $55,$55, $50
|
||||
.byte $A3,$55, $00, $55, $DD, $A0,$1B,$EE, $88, $EE,$EE
|
||||
.byte $A9,$55, $DD, $DE, $A0,$1A,$EE, $88, $E8, $EE
|
||||
.byte $E6, $65, $A7,$55, $DD,$DD, $A0,$19,$EE, $8E, $88
|
||||
.byte $0E, $A3,$EE, $8D, $88,$88, $85, $A3,$55, $DD,$DD
|
||||
.byte $9E,$9E, $A0,$17,$EE, $E8, $88, $E8, $EE, $90
|
||||
.byte $8D, $A6,$88, $44, $DD,$DD, $EE, $E9,$E9, $99
|
||||
.byte $DD, $EE,$EE, $DE, $A0,$12,$EE, $88, $EE,$EE, $8D
|
||||
.byte $A6,$88, $48, $44, $A3,$DD, $A3,$EE, $DD, $EE,$EE
|
||||
.byte $DD, $E9, $99, $A3,$9E, $AC,$EE, $66,$66, $0E
|
||||
.byte $8D, $A7,$88, $44,$44, $A3,$DD, $A3,$EE, $DD, $EE,$EE
|
||||
.byte $DD, $A4,$EE, $E9,$E9, $DD, $E9, $99, $A4,$9E
|
||||
.byte $A4,$EE, $E6,$E6, $D9, $A7,$88, $48, $44,$44, $A3,$DD
|
||||
.byte $A3,$EE, $DD, $EE, $7E, $DD, $A5,$7E, $EE
|
||||
.byte $DD, $A5,$7E, $E9,$E9, $99, $9E,$9E, $EE, $DE
|
||||
.byte $A8,$88, $A3,$44, $DD,$DD, $59, $99, $9E,$9E, $9D
|
||||
.byte $7E, $00, $5D, $57,$57, $A4,$77, $D7, $77
|
||||
.byte $D7, $A4,$97, $99, $A3,$E9, $D9, $98,$98, $A6,$88
|
||||
.byte $48, $44,$44, $77, $DD, $A4,$65, $79,$79, $A5,$77
|
||||
.byte $A4,$75, $DD, $97, $DD, $77, $A7,$75, $7D
|
||||
.byte $58,$58, $89, $D9, $A4,$88, $A3,$44, $57, $55,$55
|
||||
.byte $45, $65, $76, $A5,$77, $07, $A4,$77, $70
|
||||
.byte $DD, $09, $9D, $A8,$77, $A3,$70, $05, $5D
|
||||
.byte $58, $88,$88, $48, $A3,$44, $55, $CC, $44
|
||||
.byte $64, $76, $A6,$77, $00, $70,$70, $07,$07, $97
|
||||
.byte $DD, $C7, $C9, $99, $9A, $A5,$AA, $55
|
||||
.byte $A3,$00, $07, $70,$70, $05, $08, $A3,$44, $55,$55
|
||||
.byte $CC, $44, $66, $A7,$77, $00, $A4,$77, $79
|
||||
.byte $99,$99, $9C, $CC, $C9, $99, $A3,$CC, $CA
|
||||
.byte $CC, $A6,$00, $07, $70, $00,$00, $04, $55,$55
|
||||
.byte $A1
|
||||
gear_w_rle: .byte $28 ; ysize=48
|
||||
.byte $A0,$1A,$FF, $08, $A9,$88, $99, $A0,$1D,$FF, $88, $00
|
||||
.byte $08, $A7,$88, $99, $A0,$1D,$FF, $88,$88, $00, $A7,$88
|
||||
.byte $89, $99, $FF,$FF, $A4,$EF, $A0,$16,$FF, $88,$88, $00
|
||||
.byte $80, $A7,$88, $99, $FF,$FF, $A5,$EE, $EF, $A0,$13,$FF
|
||||
.byte $8F, $A3,$88, $00, $A7,$88, $89, $99, $FF
|
||||
.byte $A7,$EE, $A0,$12,$FF, $A4,$88, $00, $A8,$88, $99,$99, $A8,$EE
|
||||
.byte $A0,$01,$AF, $A7,$FF, $5F,$5F, $A6,$FF, $9F, $98, $88,$88
|
||||
.byte $00, $AA,$88, $99, $AA,$77, $FF,$FF, $5F,$5F, $55
|
||||
.byte $75, $77, $75,$75, $55, $5F,$5F, $FF,$FF, $99
|
||||
.byte $A3,$88, $80, $AB,$88, $A8,$75, $25,$25, $AE,$22, $99
|
||||
.byte $88,$88, $98, $80, $08, $A3,$88, $08,$08, $A5,$88
|
||||
.byte $57,$57, $77, $A4,$57, $77, $AF,$22, $99, $A3,$88
|
||||
.byte $99, $88, $80, $08,$08, $00, $80,$80, $00
|
||||
.byte $08, $A3,$88, $55,$55, $77, $A4,$55, $77, $AF,$22
|
||||
.byte $99, $88,$88, $98, $89, $88, $00, $A6,$88
|
||||
.byte $A4,$80, $55,$55, $77, $A4,$55, $77, $AD,$22, $82
|
||||
.byte $99,$99, $88,$88, $99, $88,$88, $00, $AA,$88, $55,$55
|
||||
.byte $77, $A4,$55, $77, $A3,$42, $A9,$22, $88,$88, $99
|
||||
.byte $A3,$88, $99, $88,$88, $00, $AA,$88, $55,$55, $77
|
||||
.byte $A4,$55, $77, $A4,$44, $42, $A3,$22, $42, $44,$44
|
||||
.byte $88,$88, $99,$99, $88,$88, $99, $88,$88, $08, $80
|
||||
.byte $AA,$88, $55,$55, $77, $A4,$55, $77, $A4,$44, $84
|
||||
.byte $A3,$88, $44,$44, $88,$88, $99,$99, $A3,$88, $99, $AE,$88
|
||||
.byte $55,$55, $77, $A3,$55, $75, $77, $A3,$44, $84
|
||||
.byte $A4,$88, $A3,$98, $89, $88, $99, $88,$88, $98
|
||||
.byte $89, $AE,$88, $55,$55, $77, $55,$55, $75, $57
|
||||
.byte $55, $57, $77, $C4, $88,$88, $89, $98,$98
|
||||
.byte $89, $88, $89, $88, $99, $A3,$88, $99
|
||||
.byte $AF,$88, $55,$55, $77, $75, $57, $55,$55, $77
|
||||
.byte $57, $55, $7C, $48, $A3,$88, $89, $98
|
||||
.byte $A3,$88, $99, $A3,$88, $99, $AF,$88, $57,$57, $A3,$55
|
||||
.byte $75, $77, $55, $75, $57, $45, $44,$44
|
||||
.byte $A3,$88, $89, $98, $88, $99, $A3,$88, $99
|
||||
.byte $AE,$88, $08, $00, $55,$55, $75, $57,$57, $55,$55
|
||||
.byte $75, $55, $45, $A3,$44, $AA,$88, $89, $A8,$88
|
||||
.byte $D8,$D8, $88,$88, $08, $00,$00, $99, $A4,$55, $75,$75
|
||||
.byte $57, $55,$55, $A3,$44, $A0,$10,$88, $A3,$98, $99,$99, $DD
|
||||
.byte $88, $D0,$D0, $00,$00, $09, $55,$55, $75, $57
|
||||
.byte $55,$55, $A3,$45, $C4, $CC, $C8, $A9,$88, $A4,$98
|
||||
.byte $A3,$99, $A3,$89, $88,$88, $DD, $88, $DD, $0D
|
||||
.byte $DD, $D0, $00, $A5,$55, $A4,$44, $A3,$CC, $C8
|
||||
.byte $CC, $C8, $88, $D8, $98, $A4,$99, $A3,$89
|
||||
.byte $A8,$88, $DD, $88, $DD, $00,$00, $0D, $DD
|
||||
.byte $A4,$55, $A5,$44, $A5,$CC, $88, $8D, $DD, $89,$89
|
||||
.byte $A3,$88, $D8, $DD, $A8,$88, $D8, $DD, $88
|
||||
.byte $DD, $A4,$00
|
||||
.byte $A1
|
||||
gear_base_n_rle: .byte $28 ; ysize=48
|
||||
.byte $A0,$60,$FF, $5F,$5F, $A0,$23,$FF, $5F, $FF,$FF, $55,$55, $00
|
||||
.byte $FF, $5F, $55, $A0,$18,$FF, $8F, $A5,$FF, $55,$55
|
||||
.byte $5F, $A6,$55, $00, $A0,$16,$FF, $DD, $FD, $8D
|
||||
.byte $A4,$FD, $DD, $55, $DD, $5D, $A3,$D5, $A4,$55
|
||||
.byte $5F, $A0,$15,$FF, $DD, $FF, $88, $FF,$FF, $55,$55
|
||||
.byte $DD, $55, $DD, $55, $05, $50, $05
|
||||
.byte $DD,$DD, $A3,$55, $A0,$14,$FF, $44, $94, $99,$99, $44,$44
|
||||
.byte $47,$47, $77, $47, $9D,$9D, $D5,$D5, $F5, $DD
|
||||
.byte $FF, $DD, $D5, $D0, $D5, $A0,$13,$FF, $44
|
||||
.byte $A3,$99, $A4,$44, $47, $44, $A3,$99, $95, $5D
|
||||
.byte $DD, $55,$55, $5D, $DF, $5D,$5D, $DD, $DF,$DF
|
||||
.byte $AC,$FF, $99, $49, $44,$44, $A3,$99, $A4,$44, $94
|
||||
.byte $A5,$99, $57, $77, $75, $55,$55, $DD, $57
|
||||
.byte $A3,$55, $5D, $DD, $FD, $DD, $DF, $A8,$FF
|
||||
.byte $99, $49, $44, $94, $A3,$99, $A4,$44, $A6,$99
|
||||
.byte $55,$55, $57, $77, $75, $DD, $A3,$57, $55,$55
|
||||
.byte $DD, $7F, $FF, $FD, $DD, $DF, $A6,$FF
|
||||
.byte $A3,$44, $A4,$99, $A3,$44, $A8,$99, $A3,$55, $77, $27
|
||||
.byte $A4,$57, $A3,$55, $57, $7F, $FF,$FF, $FD, $DF
|
||||
.byte $A4,$FF, $44, $94,$94, $A4,$99, $A3,$44, $99, $A7,$79
|
||||
.byte $75,$75, $77, $27, $22, $A7,$77, $55,$55, $57
|
||||
.byte $77, $7F, $DD,$DD, $A3,$FF, $44, $A6,$99, $A3,$44
|
||||
.byte $99, $A4,$55, $A3,$57, $27,$27, $A3,$22, $AA,$75, $55
|
||||
.byte $57, $DD, $7D, $99, $FF,$FF, $A7,$99, $94
|
||||
.byte $44, $94, $99, $A7,$55, $A5,$22, $AA,$57, $55,$55
|
||||
.byte $DD, $77, $99, $88, $FF, $A8,$99, $94
|
||||
.byte $99,$99, $A7,$55, $A5,$22, $AB,$77, $55, $DD, $77
|
||||
.byte $99, $88, $FF, $AB,$99, $A7,$55, $A5,$22, $AC,$7A
|
||||
.byte $DD, $77, $99, $88, $FF, $AB,$99, $A7,$55
|
||||
.byte $A5,$22, $AC,$57, $00,$00, $99, $88, $FF, $AB,$99
|
||||
.byte $55, $05, $A5,$55, $A4,$22, $52, $AC,$55, $00,$00
|
||||
.byte $99,$99, $88, $A3,$99, $09, $A7,$99, $A4,$00, $A3,$05
|
||||
.byte $A3,$22, $52, $AD,$55, $00,$00, $99,$99, $A4,$88, $00,$00
|
||||
.byte $A6,$99, $A8,$00, $02, $75, $AD,$05, $A3,$00, $99,$99
|
||||
.byte $98, $A3,$88, $00,$00, $A6,$99, $A0,$1A,$00, $A3,$99, $88,$88
|
||||
.byte $A5,$99, $09,$09, $A0,$1C,$00, $A3,$99, $98, $A4,$99, $09
|
||||
.byte $A0,$1F,$00, $A3,$99
|
||||
.byte $A1
|
||||
|
Loading…
x
Reference in New Issue
Block a user