4cade/src/fx.dhgr.fizzle.a
2018-09-13 09:53:04 -04:00

86 lines
1.6 KiB
Plaintext

;license:MIT
;(c) 2017-2018 by qkumba
;
; NOTE: must be run from language card, or caller must ensure that
; this code is in an identical location in auxmem
;
FizzleDHGR
;init RNG
ldx #1
stx @rnd1+1
dex
stx @rnd2+1
;iterate
@loop
ldy @rnd1+1
ldx @rnd2+1
lsr @rnd2+1
ror @rnd1+1
bcc +
;feedback polynomial forms #$2015 for period of 16383
lda @rnd1+1
eor #$15
sta @rnd1+1
lda @rnd2+1
eor #$20
sta @rnd2+1
;little hack to avoid missing offset zero
;screen hole at $xxFF is missed instead
+ tya
eor #$ff
sta $26
sta $3c
txa
and #$1f
;target page 1
ora #$20
sta $27
eor #$60
sta $3d
;copy pixel from other page to this page
ldy #0
cpx #$20
bcc +
sta $c003
sta $c005
+ lda ($3c),y
sta ($26),y
sta $c002
sta $c004
;check for keypress
lda $c000
bmi @exit
;and exit condition
@rnd2 lda #0
bne @loop
@rnd1 lda #0
cmp #1
bne @loop
;graphics mode
sta $c00d
sta $c057
sta $c054
sta $c052
sta $c050
sta $c05e
@exit
rts