lda tabl,x ;4 sta zp+1 ;3 lda (zp),y ;5 never crosses page boundary eor plot,x ;4 sta (zp),y ;5 ;21, about 811 pixels per frame alternate, plot only lda plot,x ;4 sta (zp),y ;5 ;16
Does anyone know the record for most pixels plotted per frame?
.C:4008 B1 38 LDA ($38),Y ; slowly varying data .C:400a 9D 00 24 STA $2400,X .C:400d BC 00 65 LDY $6500,X .C:4010 8C 41 3E STY $3E41 ; $3E47 .C:4013 AA TAX .C:4014 BD 00 66 LDA $6600,X .C:4017 99 00 2B STA $2B00,Y .C:401a A0 1B LDY #$1B ; $1A .C:401c B3 28 LAX ($28),Y .C:401e 8D 44 3E STA $3E44 ; $3E4A ; 3/4 sinewave at $6400?
Thanks. OMG Got Balls and Pimp my snail have the same code for fullscreen bitmap, with unrolled code for 38 cycles. This is from the plotter of Pimp my snail. .C:4008 B1 38 LDA ($38),Y ; slowly varying data .C:400a 9D 00 24 STA $2400,X .C:400d BC 00 65 LDY $6500,X .C:4010 8C 41 3E STY $3E41 ; $3E47 .C:4013 AA TAX .C:4014 BD 00 66 LDA $6600,X .C:4017 99 00 2B STA $2B00,Y .C:401a A0 1B LDY #$1B ; $1A .C:401c B3 28 LAX ($28),Y .C:401e 8D 44 3E STA $3E44 ; $3E4A ; 3/4 sinewave at $6400?