136471
Not strictly speaking a lfsr, but here's some el cheapo prng for ya:
On VCS you'd have to use some zp location, ofc.
clc
state_lo:
lda #0
adc #$57
sta state_lo+1
state_hi:
lda #0
adc #$21
clc
rol
adc #1
sta state_hi+1
On VCS you'd have to use some zp location, ofc.