Advertisement
felixnardella

Petscii_Outrun

Apr 17th, 2024
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.24 KB | None | 0 0
  1. ; "petscii-outrun" - one file demo for c64 (04/2024)
  2. ; code by kimono (f. nardella)
  3. ; compile with 64tass cross-assembler
  4. ; 64tass -c -a --cbm-prg outrun.asm -o outrun.prg
  5.  
  6. * = $0801
  7. .word (+), 2024
  8. .null $9e, format("%d", start)
  9. + .word 0
  10.  
  11. * = $c000
  12.  
  13. start
  14. jsr music
  15.  
  16. lda #0
  17. sta $d020
  18. sta $d021
  19. lda #$15
  20. sta $d018
  21.  
  22. ldx #$00
  23. loop_1
  24. lda screen_001+2+0*$100,x
  25. sta $0400+0*$100,x
  26. lda screen_001+2+25*40+0*$100,x
  27. sta $d800+0*$100,x
  28.  
  29. lda screen_001+2+1*$100,x
  30. sta $0400+1*$100,x
  31. lda screen_001+2+25*40+1*$100,x
  32. sta $d800+1*$100,x
  33.  
  34. lda screen_001+2+2*$100,x
  35. sta $0400+2*$100,x
  36. lda screen_001+2+25*40+2*$100,x
  37. sta $d800+2*$100,x
  38.  
  39. lda screen_001+2+$2e8,x
  40. sta $0400+$2e8,x
  41. lda screen_001+2+25*40+$2e8,x
  42. sta $d800+$2e8,x
  43. inx
  44. bne loop_1
  45. jsr infloop
  46.  
  47. ldx #$00
  48. loop_2
  49. lda screen_002+2+0*$100,x
  50. sta $0400+0*$100,x
  51. lda screen_002+2+25*40+0*$100,x
  52. sta $d800+0*$100,x
  53.  
  54. lda screen_002+2+1*$100,x
  55. sta $0400+1*$100,x
  56. lda screen_002+2+25*40+1*$100,x
  57. sta $d800+1*$100,x
  58.  
  59. lda screen_002+2+2*$100,x
  60. sta $0400+2*$100,x
  61. lda screen_002+2+25*40+2*$100,x
  62. sta $d800+2*$100,x
  63.  
  64. lda screen_002+2+$2e8,x
  65. sta $0400+$2e8,x
  66. lda screen_002+2+25*40+$2e8,x
  67. sta $d800+$2e8,x
  68. inx
  69. bne loop_2
  70.  
  71. jsr infloop
  72.  
  73. ldx #$00
  74. loop_3
  75. lda screen_003+2+0*$100,x
  76. sta $0400+0*$100,x
  77. lda screen_003+2+25*40+0*$100,x
  78. sta $d800+0*$100,x
  79.  
  80. lda screen_003+2+1*$100,x
  81. sta $0400+1*$100,x
  82. lda screen_003+2+25*40+1*$100,x
  83. sta $d800+1*$100,x
  84.  
  85. lda screen_003+2+2*$100,x
  86. sta $0400+2*$100,x
  87. lda screen_003+2+25*40+2*$100,x
  88. sta $d800+2*$100,x
  89.  
  90. lda screen_003+2+$2e8,x
  91. sta $0400+$2e8,x
  92. lda screen_003+2+25*40+$2e8,x
  93. sta $d800+$2e8,x
  94. inx
  95. bne loop_3
  96.  
  97. jsr infloop
  98.  
  99. jmp loop_1
  100.  
  101. infloop
  102. ldx #0
  103. dl0
  104. ldy #50
  105. dl1
  106. dey
  107. bne dl1
  108. dex
  109. bne dl0
  110. rts
  111.  
  112.  
  113. music
  114. sei
  115. lda #<irq
  116. ldx #>irq
  117. sta $314
  118. stx $315
  119. lda #$1b
  120. ldx #$00
  121. ldy #$7f
  122. sta $d011
  123. stx $d012
  124. sty $dc0d
  125. sty $dd0d
  126. bit $dc0d
  127. bit $dd0d
  128. lda #$01
  129. sta $d01a
  130. lda #$01
  131. jsr $1219 ; Initialize music
  132. cli
  133. rts
  134.  
  135. irq
  136. lsr $d019
  137. jsr $1069 ; Play the music
  138. jmp $ea31
  139.  
  140.  
  141. * = $1000
  142. .binary "outrun.sid", $7e
  143.  
  144.  
  145. ; PETSCII memory layout (40x25 screen)
  146. ; byte 0 = border color
  147. ; byte 1 = background color
  148. ; bytes 2-1001 = screencodes
  149. ; bytes 1002-2001 = color
  150. screen_001
  151. .byte 0,0
  152. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  153. .byte 160,160,228,228,228,228,160,160,160,160,160,160,160,228,228,228,228,228,160,160,160,160,160,160,160,160,160,228,228,228,160,160,160,160,160,160,160,160,160,160
  154. .byte 160,231,148,137,141,133,229,160,48,48,160,160,231,147,131,143,146,133,229,48,160,160,160,160,160,160,231,140,129,144,229,176,167,176,176,162,176,176,160,160
  155. .byte 160,160,227,227,227,227,160,160,160,160,160,160,160,227,227,227,227,227,160,160,160,160,160,160,160,160,160,227,227,227,160,160,160,160,160,160,160,160,160,160
  156. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  157. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  158. .byte 160,236,226,226,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  159. .byte 236,255,162,160,127,251,251,160,236,226,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  160. .byte 254,167,160,167,162,252,252,249,255,162,127,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  161. .byte 233,174,162,127,160,236,127,160,160,127,160,162,255,239,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  162. .byte 174,232,186,175,187,160,186,160,186,160,172,127,254,167,255,174,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  163. .byte 230,186,165,233,160,186,254,162,186,160,186,226,226,186,162,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  164. .byte 255,230,233,236,232,163,186,165,230,232,97,254,165,232,166,252,232,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  165. .byte 160,230,92,160,160,160,95,222,105,160,160,163,105,160,160,165,174,160,174,227,160,227,227,174,227,227,227,160,160,227,227,160,160,227,227,227,227,160,227,227
  166. .byte 160,230,92,160,160,160,160,92,160,160,160,160,225,174,186,162,160,186,160,160,160,160,186,160,162,186,174,160,160,160,160,160,160,160,160,160,160,160,160,160
  167. .byte 160,102,92,160,160,160,160,92,160,160,174,186,162,160,160,160,187,160,160,160,160,160,160,187,160,160,160,162,186,174,160,160,160,160,160,160,160,160,160,160
  168. .byte 160,230,92,160,160,160,160,174,186,162,160,160,160,228,239,239,228,239,239,228,160,160,160,160,174,160,160,160,160,160,162,186,174,160,160,160,160,160,160,160
  169. .byte 160,102,92,160,174,186,162,160,160,160,160,160,104,255,155,157,68,168,169,127,104,160,160,160,160,186,160,160,160,160,160,160,160,162,186,174,160,160,160,160
  170. .byte 160,174,186,162,160,160,160,160,160,160,160,160,233,230,202,192,192,192,203,230,223,160,160,160,160,160,187,160,160,160,160,160,160,160,160,160,162,186,174,160
  171. .byte 162,160,160,160,160,160,160,160,160,160,160,160,87,81,104,100,37,100,104,81,87,160,160,160,160,160,160,174,160,160,160,160,160,160,160,160,160,160,160,162
  172. .byte 160,160,160,160,160,160,160,160,160,160,160,186,95,157,170,131,130,141,170,155,105,160,160,160,160,160,160,160,186,160,160,160,160,160,160,160,160,160,160,160
  173. .byte 160,160,160,160,160,160,160,160,160,160,187,160,98,98,247,227,227,227,247,98,98,160,160,160,160,160,160,160,160,187,160,160,160,160,160,160,160,160,160,160
  174. .byte 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32
  175. .byte 32,48,48,48,32,11,13,47,8,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,19,20,1,7,5,32,49,32,32,32
  176. .byte 32,97,97,97,97,97,97,97,97,97,97,97,97,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32
  177. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  178. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  179. .byte 14,14,2,2,2,2,14,14,15,15,14,14,14,4,4,4,4,4,14,15,14,14,14,14,14,14,14,6,6,6,14,14,14,14,14,14,14,14,14,14
  180. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  181. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  182. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  183. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  184. .byte 14,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  185. .byte 1,1,1,1,1,1,1,14,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  186. .byte 5,5,5,5,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  187. .byte 5,5,5,5,1,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  188. .byte 5,5,5,5,1,1,5,5,5,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  189. .byte 5,5,5,5,1,1,5,5,5,1,1,5,5,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  190. .byte 11,8,9,11,11,11,5,5,5,11,11,5,5,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  191. .byte 11,8,9,11,11,11,11,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  192. .byte 12,8,9,12,12,12,12,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  193. .byte 11,8,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  194. .byte 12,8,9,12,12,12,12,12,12,12,12,12,1,2,9,9,1,7,7,2,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  195. .byte 12,12,12,12,12,12,12,12,12,12,12,12,2,2,2,2,2,2,2,2,2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  196. .byte 11,11,11,11,11,11,11,11,11,11,11,11,8,2,2,2,12,2,2,2,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  197. .byte 12,12,12,12,12,12,12,12,12,12,12,12,2,2,2,1,1,1,2,2,2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  198. .byte 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  199. .byte 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  200. .byte 1,2,2,2,1,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7,7,7,7,7,1,14,1,1,1
  201. .byte 1,3,3,3,3,3,3,3,3,3,3,13,13,11,11,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  202. screen_002
  203. .byte 14,0
  204. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  205. .byte 160,160,228,228,228,228,160,160,160,160,160,160,160,228,228,228,228,228,160,160,160,160,160,160,160,160,160,228,228,228,160,160,160,160,160,160,160,160,160,160
  206. .byte 160,231,148,137,141,133,229,160,48,48,160,160,231,147,131,143,146,133,229,48,160,160,160,160,160,160,231,140,129,144,229,176,167,176,176,162,176,176,160,160
  207. .byte 160,160,227,227,227,227,160,160,160,160,160,160,160,227,227,227,227,227,160,160,160,160,160,160,160,160,160,227,227,227,160,160,160,160,160,160,160,160,160,160
  208. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  209. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  210. .byte 160,236,226,226,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  211. .byte 236,255,162,160,127,251,251,160,236,226,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  212. .byte 254,167,160,167,162,252,252,249,255,162,127,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  213. .byte 248,127,160,160,160,236,127,160,160,127,160,162,255,239,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  214. .byte 186,165,160,233,127,121,223,160,186,160,172,127,254,167,255,174,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  215. .byte 165,255,160,186,246,150,175,160,165,121,127,172,160,186,162,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  216. .byte 255,236,232,220,186,165,230,232,118,254,165,232,104,127,166,252,232,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  217. .byte 226,160,160,95,230,236,105,160,124,163,105,160,230,163,160,160,186,160,187,227,160,187,227,186,227,227,227,227,227,160,227,227,160,227,227,227,227,160,227,227
  218. .byte 230,160,160,160,230,92,160,160,160,230,160,160,97,186,189,167,160,174,160,160,160,160,174,160,167,189,186,160,160,160,160,160,160,160,160,160,160,160,160,160
  219. .byte 230,160,160,160,230,92,160,160,160,230,186,189,160,160,160,160,186,160,160,160,160,160,160,186,160,160,160,167,189,186,160,160,160,160,160,160,160,160,160,160
  220. .byte 230,160,160,160,230,92,160,186,189,167,160,160,160,228,239,239,228,239,239,228,160,160,160,160,187,160,160,160,160,160,167,189,186,160,160,160,160,160,160,160
  221. .byte 230,160,160,160,186,189,167,160,160,160,160,160,104,255,155,157,68,168,169,127,104,160,160,160,160,174,160,160,160,160,160,160,160,167,189,186,160,160,160,160
  222. .byte 230,186,189,167,160,160,160,160,160,160,160,160,233,230,202,192,192,195,203,230,223,160,160,160,160,160,186,160,160,160,160,160,160,160,160,160,167,189,186,160
  223. .byte 167,160,160,160,160,160,160,160,160,160,160,160,87,81,104,100,37,100,104,81,87,160,160,160,160,160,160,187,160,160,160,160,160,160,160,160,160,160,160,167
  224. .byte 160,160,160,160,160,160,160,160,160,160,160,174,95,157,170,131,130,141,170,155,105,160,160,160,160,160,160,160,174,160,160,160,160,160,160,160,160,160,160,160
  225. .byte 160,160,160,160,160,160,160,160,160,160,186,160,98,98,247,227,227,227,247,98,98,160,160,160,160,160,160,160,160,186,160,160,160,160,160,160,160,160,160,160
  226. .byte 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32
  227. .byte 32,49,48,48,32,11,13,47,8,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,19,20,1,7,5,32,49,32,32,32
  228. .byte 32,97,97,97,97,97,97,97,97,97,97,97,97,97,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32
  229. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  230. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  231. .byte 14,14,2,2,2,2,14,14,15,15,14,14,14,4,4,4,4,4,14,15,14,14,14,14,14,14,14,6,6,6,14,14,14,14,14,14,14,14,14,14
  232. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  233. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  234. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  235. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  236. .byte 14,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  237. .byte 1,1,1,1,1,1,1,14,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  238. .byte 5,5,1,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  239. .byte 5,5,1,5,5,5,5,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  240. .byte 5,5,1,5,5,5,5,1,5,5,5,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  241. .byte 5,5,1,5,5,5,5,1,5,5,5,1,5,5,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  242. .byte 5,12,12,5,5,5,5,12,5,5,5,12,5,5,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  243. .byte 8,12,12,12,8,9,12,12,12,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  244. .byte 8,11,11,11,8,9,11,11,11,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  245. .byte 8,12,12,12,8,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  246. .byte 8,12,12,12,12,12,12,12,12,12,12,12,1,2,9,9,1,7,7,2,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  247. .byte 8,11,11,11,11,11,11,11,11,11,11,11,2,2,2,2,2,2,2,2,2,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  248. .byte 12,12,12,12,12,12,12,12,12,12,12,12,8,2,2,2,12,2,2,2,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  249. .byte 12,12,12,12,12,12,12,12,12,12,12,12,2,2,2,1,1,1,2,2,2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  250. .byte 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  251. .byte 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  252. .byte 11,2,2,2,11,8,8,8,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,7,7,7,7,7,11,14,11,11,11
  253. .byte 11,3,3,3,3,3,3,3,3,3,3,13,13,13,13,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  254. screen_003
  255. .byte 0,0
  256. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  257. .byte 160,160,228,228,228,228,160,160,160,160,160,160,160,228,228,228,228,228,160,160,160,160,160,160,160,160,160,228,228,228,160,160,160,160,160,160,160,160,160,160
  258. .byte 160,231,148,137,141,133,229,160,48,48,160,160,231,147,131,143,146,133,229,48,160,160,160,160,160,160,231,140,129,144,229,176,167,176,176,162,176,176,160,160
  259. .byte 160,160,227,227,227,227,160,160,160,160,160,160,160,227,227,227,227,227,160,160,160,160,160,160,160,160,160,227,227,227,160,160,160,160,160,160,160,160,160,160
  260. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  261. .byte 160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  262. .byte 160,236,226,226,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  263. .byte 236,255,162,160,127,251,251,160,236,226,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  264. .byte 254,167,160,167,162,252,252,249,255,162,127,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  265. .byte 187,160,160,160,160,236,127,160,160,127,160,162,255,239,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  266. .byte 160,233,227,248,121,160,186,226,226,160,172,127,254,167,255,174,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  267. .byte 160,23,232,211,186,186,233,227,248,208,186,172,160,186,162,251,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  268. .byte 232,102,175,152,102,163,118,186,254,175,232,245,163,232,166,252,232,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160
  269. .byte 160,95,102,222,105,160,124,102,163,105,160,160,225,160,160,160,172,160,186,227,160,186,227,172,160,227,227,227,227,160,227,227,160,227,227,227,227,160,227,227
  270. .byte 160,160,230,92,160,160,160,160,92,160,160,160,160,232,169,167,160,187,160,160,160,160,187,160,167,172,232,160,160,160,160,160,160,160,160,160,160,160,160,160
  271. .byte 160,160,230,92,160,160,160,160,92,160,232,174,167,160,160,160,174,160,160,160,160,160,160,174,160,160,160,167,174,232,160,160,160,160,160,160,160,160,160,160
  272. .byte 160,160,230,92,160,160,160,232,172,167,160,160,160,228,239,239,228,239,239,228,160,160,160,160,186,160,160,160,160,160,167,172,232,160,160,160,160,160,160,160
  273. .byte 160,160,230,92,232,174,167,160,160,160,160,160,104,255,155,157,68,168,169,127,104,160,160,160,160,187,160,160,160,160,160,160,160,167,174,232,160,160,160,160
  274. .byte 160,232,174,167,160,160,160,160,160,160,160,160,233,230,202,192,192,195,203,230,223,160,160,160,160,160,174,160,160,160,160,160,160,160,160,160,167,174,232,160
  275. .byte 186,160,160,160,160,160,160,160,160,160,160,160,87,81,104,100,37,100,104,81,87,160,160,160,160,160,160,186,160,160,160,160,160,160,160,160,160,160,160,186
  276. .byte 160,160,160,160,160,160,160,160,160,160,160,187,95,157,170,131,130,141,170,155,105,160,160,160,160,160,160,160,187,160,160,160,160,160,160,160,160,160,160,160
  277. .byte 160,160,160,160,160,160,160,160,160,160,174,160,98,98,247,227,227,227,247,98,98,160,160,160,160,160,160,160,160,174,160,160,160,160,160,160,160,160,160,160
  278. .byte 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32
  279. .byte 32,50,53,48,32,11,13,47,8,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,19,20,1,7,5,32,49,32,32,32
  280. .byte 32,97,97,97,97,97,97,97,97,97,97,97,97,97,97,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32
  281. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  282. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  283. .byte 14,14,2,2,2,2,14,14,15,15,14,14,14,4,4,4,4,4,14,15,14,14,14,14,14,14,14,6,6,6,14,14,14,14,14,14,14,14,14,14
  284. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  285. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  286. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  287. .byte 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  288. .byte 14,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  289. .byte 1,1,1,1,1,1,1,14,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  290. .byte 1,1,1,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  291. .byte 1,5,5,5,5,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  292. .byte 1,5,5,5,5,1,5,5,5,5,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  293. .byte 1,5,5,5,5,1,5,5,5,5,1,5,5,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14
  294. .byte 11,5,5,5,5,11,5,5,5,5,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  295. .byte 12,12,8,9,12,12,12,12,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  296. .byte 11,11,8,9,11,11,11,11,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  297. .byte 12,12,8,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  298. .byte 12,12,8,9,12,12,12,12,12,12,12,12,1,2,9,9,1,7,7,2,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  299. .byte 11,11,11,11,11,11,11,11,11,11,11,11,2,2,2,2,2,2,2,2,2,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  300. .byte 12,12,12,12,12,12,12,12,12,12,12,12,8,2,2,2,12,2,2,2,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  301. .byte 12,12,12,12,12,12,12,12,12,12,12,12,2,2,2,1,1,1,2,2,2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  302. .byte 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12
  303. .byte 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
  304. .byte 11,2,2,2,11,8,8,8,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,7,7,7,7,7,11,14,11,11,11
  305. .byte 11,3,3,3,3,3,3,3,3,3,3,13,13,13,2,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement