Advertisement
KSSBrawl_

random.asm

Feb 18th, 2022
3,866
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .export     RNG1_GetByte_Masked
  2. .export     RNG1_GetByte
  3.  
  4. .a16
  5. .i16
  6.  
  7. ;---------------------------------------------------------------------
  8. ; TickRNG
  9. ;
  10. ; Advances the state of both RNGs. If any buttons are held down on
  11. ; either joypad, the RNGs are advanced by 2 ticks. If no buttons are
  12. ; being held, they are advanced by 1 tick instead.
  13. ;---------------------------------------------------------------------
  14. TickRNG:
  15.     php
  16.     rep         #$30
  17.     lda         a:$02a2
  18.     beq         @CheckJoypads
  19.     cmp         #1
  20.     beq         @CheckJoypads
  21.     jmp         @Done
  22. @CheckJoypads:
  23.     lda         z:joy1_held
  24.     ora         z:joy2_held
  25.     and         #$fff0
  26.     beq         @Tick2_RNG1_a
  27. @Tick1_RNG1_a:
  28.     inc         a:rng1index
  29.     bne         @Tick1_RNG2_a
  30.     lda         a:rng1adder
  31.     inc
  32.     cmp         #$0100
  33.     bcc         @Tick1_RNG1_b
  34.     lda         #0
  35. @Tick1_RNG1_b:
  36.     sta         a:rng1adder
  37. @Tick1_RNG2_a:
  38.     inc         a:rng2index
  39.     bne         @Tick2_RNG1_a
  40.     lda         a:rng2adder
  41.     inc
  42.     cmp         #$0100
  43.     bcc         @Tick1_RNG2_b
  44.     lda         #0
  45. @Tick1_RNG2_b:
  46.     sta         a:rng2adder
  47. @Tick2_RNG1_a:
  48.     inc         a:rng1index
  49.     bne         @Tick2_RNG2_a
  50.     lda         a:rng1adder
  51.     inc
  52.     cmp         #$0100
  53.     bcc         @Tick2_RNG1_b
  54.     lda         #0
  55. @Tick2_RNG1_b:
  56.     sta         a:rng1adder
  57. @Tick2_RNG2_a:
  58.     inc         a:rng2index
  59.     bne         @Done
  60.     lda         a:rng2adder
  61.     inc
  62.     cmp         #$0100
  63.     bcc         @Tick2_RNG2_b
  64.     lda         #0
  65. @Tick2_RNG2_b:
  66.     sta         a:rng2adder
  67. @Done:
  68.     plp
  69.     rtl
  70.  
  71. RNG1_GetByte_Masked:
  72.     jsl         RNG1_GetByte
  73.     and         a:$0370
  74.     rtl
  75.  
  76. ;---------------------------------------------------------------------
  77. ; RNG1_GetByte
  78. ;
  79. ; Returns a random byte generated by RNG1.
  80. ;---------------------------------------------------------------------
  81. RNG1_GetByte:
  82.     phx
  83.     php
  84.     rep         #$30
  85.     lda         a:rng1index
  86.     inc
  87.     and         #$07ff                  ; Mask index to prevent going past the end of the
  88.                                         ; lookup table
  89.     sta         a:rng1index
  90.     tax
  91.     bne         @RNG1_GetByte_10
  92.     inc         a:rng1adder
  93. @RNG1_GetByte_10:
  94.     lda         f:RNGLookupTable,x
  95.     clc
  96.     adc         a:rng1adder
  97.     and         #$00ff
  98.     plp
  99.     plx
  100.     rtl
  101.  
  102. ;---------------------------------------------------------------------
  103. ; RNG2_GetByte
  104. ;
  105. ; Returns a random byte generated by RNG2.
  106. ;---------------------------------------------------------------------
  107. RNG2_GetByte:
  108.     phx
  109.     php
  110.     rep         #$30
  111.     lda         a:rng2index
  112.     inc
  113.     cmp         #$0800                      ; Have we reached the end of the lookup table?
  114.     bcc         @RNG2_GetByte_10
  115.     inc         a:rng2adder
  116.     stz         a:rng2index                 ; Point index to the start of the lookup table
  117.  
  118.     ldx         #0
  119.     bra         @RNG2_GetByte_20
  120. @RNG2_GetByte_10:
  121.     sta         a:rng2index
  122.     tax
  123. @RNG2_GetByte_20:
  124.     lda         f:RNGLookupTable,x
  125.     clc
  126.     adc         a:rng2adder
  127.     and         #$00ff
  128.     plp
  129.     plx
  130.     rtl
  131.  
  132. RNGLookupTable:
  133.     .byte       $2c,$c5,$05,$24,$b7,$f5,$2a,$ad
  134.     .byte       $4f,$22,$de,$70,$97,$c2,$21,$f4
  135.     .byte       $c2,$45,$b0,$96,$b1,$e4,$3b,$fd
  136.     .byte       $54,$ab,$e5,$c1,$3f,$ca,$fd,$57
  137.     .byte       $8b,$18,$fb,$40,$f0,$e8,$be,$72
  138.     .byte       $20,$11,$05,$06,$66,$38,$2b,$24
  139.     .byte       $7f,$61,$27,$2c,$b9,$b6,$c4,$26
  140.     .byte       $4a,$96,$1d,$6c,$f3,$e1,$5b,$96
  141.     .byte       $d5,$83,$b3,$a6,$93,$3f,$9a,$75
  142.     .byte       $aa,$bd,$4b,$5e,$0d,$d7,$7c,$28
  143.     .byte       $04,$20,$5c,$39,$47,$b6,$d0,$fa
  144.     .byte       $56,$4a,$ef,$85,$1b,$6d,$bc,$96
  145.     .byte       $c3,$1d,$23,$b0,$d9,$90,$36,$8e
  146.     .byte       $a5,$3f,$a8,$ce,$c4,$36,$8a,$d9
  147.     .byte       $09,$9b,$45,$16,$93,$7e,$d9,$4f
  148.     .byte       $2f,$e0,$55,$63,$f0,$06,$96,$2d
  149.     .byte       $0c,$ff,$43,$b5,$fa,$73,$09,$96
  150.     .byte       $ca,$af,$14,$af,$c4,$ee,$ce,$0e
  151.     .byte       $44,$ea,$dc,$19,$d5,$a3,$55,$fe
  152.     .byte       $8d,$6f,$45,$5e,$a8,$43,$62,$35
  153.     .byte       $68,$40,$0d,$0d,$2c,$81,$8c,$63
  154.     .byte       $cf,$24,$86,$59,$44,$97,$c0,$9e
  155.     .byte       $6f,$24,$17,$9b,$46,$c0,$bd,$e0
  156.     .byte       $28,$10,$b8,$cd,$7d,$bd,$98,$85
  157.     .byte       $90,$f9,$78,$0f,$a9,$52,$37,$cf
  158.     .byte       $6e,$b6,$f8,$25,$7c,$c8,$d8,$63
  159.     .byte       $41,$62,$ef,$f5,$1d,$6b,$89,$cb
  160.     .byte       $b9,$da,$a6,$0a,$a7,$0b,$af,$f4
  161.     .byte       $3b,$42,$7b,$15,$a8,$7d,$82,$b0
  162.     .byte       $5f,$7f,$60,$69,$a4,$19,$8d,$34
  163.     .byte       $73,$bb,$5b,$7d,$92,$3c,$31,$99
  164.     .byte       $f7,$e6,$06,$6c,$5c,$c6,$21,$5c
  165.     .byte       $21,$32,$0f,$76,$62,$9b,$e5,$e0
  166.     .byte       $59,$94,$b7,$7f,$f5,$23,$59,$e8
  167.     .byte       $bb,$48,$55,$8c,$de,$cc,$2c,$20
  168.     .byte       $9a,$4c,$d2,$4b,$d6,$85,$64,$94
  169.     .byte       $fa,$e1,$2c,$8a,$0e,$43,$d7,$35
  170.     .byte       $14,$10,$f5,$bd,$a6,$7e,$b2,$59
  171.     .byte       $d4,$21,$d3,$7b,$38,$b3,$f4,$3a
  172.     .byte       $5b,$23,$00,$ff,$4d,$e1,$f1,$74
  173.     .byte       $7f,$69,$ca,$aa,$e4,$0e,$d1,$89
  174.     .byte       $48,$09,$12,$7d,$f0,$c1,$11,$5e
  175.     .byte       $73,$5d,$ce,$a1,$d8,$88,$ff,$be
  176.     .byte       $f1,$84,$89,$e1,$f7,$72,$40,$d4
  177.     .byte       $67,$df,$e0,$2c,$1c,$93,$4b,$b3
  178.     .byte       $ae,$97,$05,$16,$0a,$85,$ee,$cf
  179.     .byte       $52,$14,$3e,$55,$f7,$e3,$c6,$83
  180.     .byte       $14,$86,$65,$47,$0e,$cf,$c9,$8c
  181.     .byte       $6a,$5e,$67,$69,$ef,$6b,$bd,$8a
  182.     .byte       $fd,$d3,$c7,$df,$2c,$61,$c0,$84
  183.     .byte       $28,$5f,$1b,$f1,$cc,$5e,$c1,$63
  184.     .byte       $7d,$41,$8c,$8a,$c9,$90,$03,$74
  185.     .byte       $41,$fc,$58,$b9,$94,$2e,$9f,$e8
  186.     .byte       $ed,$d4,$51,$32,$8e,$ee,$01,$56
  187.     .byte       $ad,$56,$5c,$cc,$8f,$8e,$67,$35
  188.     .byte       $e3,$cf,$f5,$02,$61,$4f,$67,$64
  189.     .byte       $a3,$d1,$a9,$75,$43,$73,$69,$a4
  190.     .byte       $36,$b4,$98,$66,$69,$c4,$27,$1b
  191.     .byte       $9a,$10,$fb,$3e,$78,$0e,$32,$d1
  192.     .byte       $fe,$46,$9a,$08,$0d,$a1,$6e,$34
  193.     .byte       $48,$f6,$52,$f3,$35,$d2,$92,$96
  194.     .byte       $91,$88,$97,$d3,$f4,$7a,$ab,$ac
  195.     .byte       $a6,$a6,$ee,$9f,$c0,$74,$98,$0f
  196.     .byte       $87,$be,$71,$f2,$05,$21,$8d,$bd
  197.     .byte       $e9,$83,$4d,$8c,$a1,$e5,$93,$96
  198.     .byte       $b6,$6a,$45,$d1,$67,$a8,$05,$e1
  199.     .byte       $89,$2f,$2e,$47,$9e,$58,$12,$c7
  200.     .byte       $35,$50,$73,$1a,$81,$65,$3f,$d5
  201.     .byte       $3d,$8f,$90,$99,$bf,$42,$e4,$7c
  202.     .byte       $5b,$72,$99,$b8,$fb,$e8,$ac,$93
  203.     .byte       $fc,$c4,$b3,$8e,$4b,$53,$18,$d1
  204.     .byte       $c0,$14,$97,$d6,$ba,$05,$fb,$55
  205.     .byte       $fc,$33,$15,$71,$c8,$81,$fd,$21
  206.     .byte       $3a,$b8,$8c,$e0,$e7,$cf,$1a,$98
  207.     .byte       $b6,$7d,$74,$cc,$fe,$fd,$22,$05
  208.     .byte       $e0,$21,$d7,$80,$e7,$9a,$38,$16
  209.     .byte       $df,$86,$d2,$6b,$f3,$3b,$55,$5b
  210.     .byte       $0a,$53,$16,$a1,$63,$f8,$c5,$ca
  211.     .byte       $6f,$71,$6b,$59,$ef,$ed,$a7,$3c
  212.     .byte       $4e,$90,$29,$6f,$41,$bc,$6f,$ee
  213.     .byte       $9d,$a1,$bf,$e1,$78,$07,$66,$03
  214.     .byte       $84,$5b,$2f,$54,$a8,$f9,$26,$ff
  215.     .byte       $e0,$b9,$8e,$8e,$56,$bc,$20,$4c
  216.     .byte       $c1,$78,$87,$fb,$ff,$02,$18,$b7
  217.     .byte       $ee,$9b,$d6,$2a,$90,$7e,$a6,$f2
  218.     .byte       $5e,$e9,$cf,$4f,$ed,$6a,$b5,$11
  219.     .byte       $bf,$6c,$d6,$c1,$6c,$01,$05,$0e
  220.     .byte       $f2,$f2,$e7,$7b,$59,$04,$ab,$48
  221.     .byte       $8b,$8d,$0e,$9e,$72,$38,$8e,$fe
  222.     .byte       $53,$15,$ed,$eb,$6a,$e4,$ea,$d7
  223.     .byte       $c7,$a3,$3b,$4b,$68,$55,$ce,$5b
  224.     .byte       $98,$15,$41,$49,$87,$5c,$a0,$78
  225.     .byte       $2a,$8f,$5e,$95,$56,$cc,$96,$00
  226.     .byte       $18,$f6,$82,$81,$57,$ff,$3c,$28
  227.     .byte       $ad,$75,$b5,$85,$82,$50,$f3,$09
  228.     .byte       $6b,$fa,$8f,$bc,$c2,$a0,$6e,$21
  229.     .byte       $86,$b8,$bf,$67,$74,$d3,$35,$d1
  230.     .byte       $67,$a5,$86,$67,$ed,$52,$24,$de
  231.     .byte       $2b,$fb,$3b,$c5,$f3,$89,$ec,$f2
  232.     .byte       $23,$b9,$c7,$2c,$41,$68,$8e,$1a
  233.     .byte       $54,$20,$29,$6c,$05,$e4,$e5,$48
  234.     .byte       $f7,$39,$f1,$f7,$63,$75,$1b,$d0
  235.     .byte       $f8,$4c,$c7,$65,$f2,$98,$30,$ed
  236.     .byte       $79,$69,$e3,$f1,$3c,$4d,$78,$3b
  237.     .byte       $4e,$e1,$94,$fc,$40,$98,$1c,$3c
  238.     .byte       $80,$cb,$bb,$87,$f2,$02,$97,$d6
  239.     .byte       $cc,$81,$4f,$bb,$b7,$16,$38,$d1
  240.     .byte       $24,$22,$d9,$64,$eb,$e6,$a4,$5c
  241.     .byte       $2b,$10,$f7,$6f,$5e,$86,$53,$87
  242.     .byte       $bb,$72,$db,$71,$d0,$8e,$10,$c8
  243.     .byte       $60,$b2,$cc,$21,$7b,$9b,$7c,$78
  244.     .byte       $dc,$fd,$a2,$db,$87,$cc,$8a,$55
  245.     .byte       $a3,$c8,$4b,$1d,$95,$47,$02,$00
  246.     .byte       $5f,$47,$4b,$0c,$37,$b4,$00,$7e
  247.     .byte       $6b,$f6,$35,$ee,$75,$be,$74,$b9
  248.     .byte       $5a,$12,$35,$af,$48,$97,$a1,$fe
  249.     .byte       $6f,$1f,$89,$5e,$1f,$73,$a1,$7f
  250.     .byte       $24,$62,$01,$b0,$5f,$0a,$dd,$d0
  251.     .byte       $a6,$65,$84,$7a,$dd,$18,$97,$6c
  252.     .byte       $55,$79,$8c,$38,$64,$de,$63,$2f
  253.     .byte       $46,$2d,$a6,$8b,$34,$a1,$a7,$dc
  254.     .byte       $c3,$da,$f6,$b4,$7f,$28,$21,$96
  255.     .byte       $c7,$19,$af,$1d,$eb,$40,$5f,$69
  256.     .byte       $85,$48,$9d,$cf,$15,$3a,$46,$c1
  257.     .byte       $e0,$0b,$9d,$fa,$0a,$6a,$8d,$ef
  258.     .byte       $f2,$c7,$21,$72,$cf,$a7,$42,$a9
  259.     .byte       $88,$28,$af,$2f,$d8,$cf,$42,$88
  260.     .byte       $a2,$9a,$61,$ca,$92,$42,$c3,$8a
  261.     .byte       $f6,$d1,$65,$05,$db,$65,$cc,$90
  262.     .byte       $6c,$43,$7c,$41,$87,$1f,$b8,$df
  263.     .byte       $a1,$aa,$7c,$08,$db,$5d,$b9,$a1
  264.     .byte       $65,$85,$d0,$83,$14,$8f,$51,$63
  265.     .byte       $3f,$96,$f5,$02,$df,$2b,$da,$97
  266.     .byte       $e6,$63,$fd,$79,$e0,$27,$fd,$11
  267.     .byte       $c8,$b8,$0e,$00,$2d,$81,$3c,$8c
  268.     .byte       $86,$21,$e2,$50,$d1,$b9,$6a,$25
  269.     .byte       $73,$73,$46,$4b,$4c,$53,$2f,$dc
  270.     .byte       $1a,$42,$9d,$73,$11,$58,$87,$18
  271.     .byte       $b7,$69,$5d,$6f,$05,$d4,$43,$21
  272.     .byte       $bb,$88,$8f,$8b,$04,$57,$84,$a6
  273.     .byte       $4b,$7f,$51,$37,$5c,$76,$45,$37
  274.     .byte       $bf,$f6,$54,$85,$52,$49,$d0,$ca
  275.     .byte       $25,$d6,$60,$ad,$9b,$ed,$45,$39
  276.     .byte       $be,$cf,$ce,$8b,$e2,$01,$19,$c0
  277.     .byte       $7e,$d3,$0b,$1d,$47,$2b,$92,$81
  278.     .byte       $8e,$97,$1a,$08,$db,$93,$4e,$01
  279.     .byte       $cb,$17,$11,$12,$27,$65,$bb,$aa
  280.     .byte       $46,$11,$98,$a8,$a5,$51,$9f,$49
  281.     .byte       $c4,$86,$6f,$57,$43,$0b,$8f,$90
  282.     .byte       $3e,$3e,$e7,$54,$e5,$cd,$7a,$94
  283.     .byte       $60,$43,$66,$f7,$e2,$d3,$1d,$4d
  284.     .byte       $0b,$63,$e5,$39,$84,$dc,$8e,$1b
  285.     .byte       $d5,$b1,$73,$3c,$8a,$ae,$b4,$3d
  286.     .byte       $87,$03,$b2,$c2,$a7,$90,$cb,$5a
  287.     .byte       $9c,$73,$57,$b2,$03,$d0,$e3,$fb
  288.     .byte       $c6,$e0,$ad,$98,$b7,$3d,$60,$0d
  289.     .byte       $6a,$6c,$11,$24,$53,$ab,$79,$61
  290.     .byte       $21,$fd,$74,$a8,$5a,$74,$bb,$2d
  291.     .byte       $37,$be,$de,$9d,$c2,$f3,$85,$8a
  292.     .byte       $2e,$9e,$e8,$1c,$77,$09,$8b,$f6
  293.     .byte       $3a,$ce,$3f,$67,$d7,$9b,$56,$d2
  294.     .byte       $c5,$45,$26,$60,$35,$10,$c0,$e4
  295.     .byte       $ea,$3d,$f2,$0e,$58,$d5,$7b,$d4
  296.     .byte       $fc,$b5,$8d,$1d,$fb,$db,$89,$b0
  297.     .byte       $fe,$ef,$f6,$5d,$4d,$15,$c2,$6a
  298.     .byte       $2a,$f2,$bd,$40,$70,$fd,$53,$57
  299.     .byte       $6c,$08,$8a,$5f,$fc,$0e,$3c,$b0
  300.     .byte       $e6,$3e,$95,$f3,$7b,$49,$d0,$12
  301.     .byte       $6d,$e9,$2d,$5e,$ed,$b2,$37,$00
  302.     .byte       $08,$1d,$34,$a2,$43,$d2,$ec,$5e
  303.     .byte       $76,$36,$9f,$e6,$e6,$35,$41,$f5
  304.     .byte       $a6,$51,$f8,$f7,$30,$eb,$d9,$f4
  305.     .byte       $3f,$d1,$de,$c2,$ef,$09,$2b,$6b
  306.     .byte       $18,$dd,$82,$dd,$e7,$28,$03,$d1
  307.     .byte       $bf,$df,$29,$fd,$4f,$e3,$02,$7d
  308.     .byte       $f4,$05,$ae,$7f,$51,$5a,$1b,$2e
  309.     .byte       $2c,$c2,$ff,$e1,$8c,$b3,$16,$85
  310.     .byte       $11,$4b,$9e,$48,$93,$96,$10,$88
  311.     .byte       $ff,$1c,$20,$fb,$6e,$af,$f7,$1f
  312.     .byte       $86,$73,$af,$e4,$16,$2e,$10,$98
  313.     .byte       $ed,$d2,$89,$14,$fb,$48,$72,$25
  314.     .byte       $ab,$7f,$81,$3d,$80,$b5,$8a,$5b
  315.     .byte       $ee,$05,$7b,$38,$7b,$32,$97,$b3
  316.     .byte       $16,$b2,$f3,$7e,$b7,$fe,$2e,$0a
  317.     .byte       $39,$19,$74,$b1,$74,$5f,$b6,$23
  318.     .byte       $9f,$90,$23,$13,$e4,$1c,$ea,$22
  319.     .byte       $45,$b1,$34,$0b,$ae,$03,$5c,$11
  320.     .byte       $5b,$db,$71,$a6,$6d,$63,$ee,$5d
  321.     .byte       $c8,$b0,$b8,$12,$30,$91,$59,$57
  322.     .byte       $a4,$97,$7c,$22,$f9,$65,$a8,$b5
  323.     .byte       $bb,$39,$41,$ce,$40,$bb,$bc,$11
  324.     .byte       $0e,$06,$22,$b2,$6f,$f4,$c8,$67
  325.     .byte       $53,$af,$4d,$8d,$66,$75,$d4,$99
  326.     .byte       $72,$ab,$83,$c2,$f7,$25,$3c,$ed
  327.     .byte       $08,$b4,$9b,$d8,$68,$f1,$30,$8b
  328.     .byte       $e6,$4a,$fe,$fc,$f6,$4a,$34,$01
  329.     .byte       $91,$2d,$2a,$7c,$4e,$a4,$9f,$c1
  330.     .byte       $c1,$e5,$31,$4b,$14,$f6,$1e,$a0
  331.     .byte       $e5,$3b,$3a,$81,$5f,$3f,$30,$57
  332.     .byte       $9b,$bf,$fd,$da,$39,$fd,$a9,$04
  333.     .byte       $3a,$43,$48,$35,$21,$b5,$32,$a7
  334.     .byte       $4a,$5c,$7f,$15,$8a,$70,$c5,$a7
  335.     .byte       $08,$e6,$15,$22,$5c,$3a,$34,$4d
  336.     .byte       $e6,$7e,$16,$a6,$70,$a4,$a1,$46
  337.     .byte       $07,$08,$9f,$12,$16,$41,$04,$24
  338.     .byte       $c4,$29,$63,$78,$91,$2a,$ab,$db
  339.     .byte       $2c,$cc,$26,$11,$97,$7c,$b3,$46
  340.     .byte       $7d,$9f,$43,$b7,$d3,$d7,$92,$a1
  341.     .byte       $af,$95,$27,$6a,$65,$df,$8f,$0e
  342.     .byte       $e8,$63,$d5,$cd,$5f,$bd,$46,$13
  343.     .byte       $06,$05,$63,$a7,$48,$9d,$26,$18
  344.     .byte       $1b,$39,$7a,$65,$9b,$2f,$f5,$eb
  345.     .byte       $ea,$01,$d8,$94,$47,$28,$49,$3e
  346.     .byte       $6d,$23,$cf,$6a,$2e,$c1,$0f,$26
  347.     .byte       $50,$ab,$c5,$3c,$a8,$34,$05,$9c
  348.     .byte       $75,$65,$b4,$07,$ff,$44,$42,$fe
  349.     .byte       $70,$65,$a9,$ea,$f3,$b4,$ab,$8d
  350.     .byte       $0b,$81,$47,$a8,$35,$cd,$7d,$ee
  351.     .byte       $c1,$d3,$44,$29,$ee,$da,$c8,$ab
  352.     .byte       $45,$3a,$e9,$f7,$37,$ad,$f0,$b1
  353.     .byte       $fa,$d9,$94,$c3,$a1,$1a,$2d,$d1
  354.     .byte       $7a,$94,$37,$e0,$ad,$79,$0a,$42
  355.     .byte       $12,$98,$d8,$c4,$52,$27,$e7,$1b
  356.     .byte       $42,$d1,$10,$8c,$7c,$03,$79,$dc
  357.     .byte       $3f,$74,$8f,$77,$89,$f3,$46,$e4
  358.     .byte       $73,$75,$95,$68,$cd,$5e,$2c,$f9
  359.     .byte       $fa,$10,$78,$67,$0d,$b2,$da,$c6
  360.     .byte       $24,$42,$23,$1e,$05,$de,$53,$56
  361.     .byte       $f8,$4e,$93,$5e,$e4,$d6,$70,$9c
  362.     .byte       $ad,$3b,$5a,$9a,$cd,$14,$5c,$ed
  363.     .byte       $31,$53,$1d,$68,$56,$13,$18,$82
  364.     .byte       $a4,$a4,$18,$05,$0a,$d5,$f7,$f9
  365.     .byte       $dc,$81,$97,$d0,$e9,$5c,$21,$d3
  366.     .byte       $e0,$ff,$7d,$cc,$e5,$32,$12,$f5
  367.     .byte       $6f,$7a,$c0,$21,$65,$e3,$1a,$29
  368.     .byte       $79,$10,$e8,$9a,$c4,$80,$dd,$9c
  369.     .byte       $a3,$22,$95,$25,$d1,$1c,$d2,$60
  370.     .byte       $c5,$d9,$f8,$58,$4e,$51,$c6,$e9
  371.     .byte       $6d,$9d,$56,$e9,$73,$ba,$58,$92
  372.     .byte       $5b,$9d,$8b,$33,$6a,$78,$7d,$17
  373.     .byte       $05,$4c,$83,$b6,$d2,$af,$fb,$1b
  374.     .byte       $13,$e0,$c1,$95,$3f,$08,$f0,$a1
  375.     .byte       $e2,$d3,$da,$17,$b7,$2f,$4a,$95
  376.     .byte       $03,$64,$f9,$29,$34,$55,$4e,$42
  377.     .byte       $bb,$15,$5a,$d9,$26,$ad,$14,$dc
  378.     .byte       $82,$2c,$d1,$db,$f0,$f0,$07,$f5
  379.     .byte       $86,$34,$43,$05,$69,$db,$68,$0a
  380.     .byte       $28,$7c,$29,$d4,$5b,$ae,$c9,$f6
  381.     .byte       $7c,$95,$12,$e7,$05,$ad,$94,$7a
  382.     .byte       $cb,$d6,$20,$82,$9a,$a1,$84,$be
  383.     .byte       $12,$da,$88,$0a,$c1,$56,$29,$c9
  384.     .byte       $82,$fe,$15,$8d,$16,$1c,$66,$09
  385.     .byte       $00,$e5,$a3,$39,$a5,$48,$f5,$cf
  386.     .byte       $a5,$f6,$a6,$e1,$74,$b2,$df,$d2
  387.     .byte       $3d,$da,$a2,$7e,$f8,$37,$06,$aa
  388.     .byte       $ca,$01,$b3,$aa,$9d,$36,$9d,$54
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement