thanks for the response. i didn't know there was a diffrence to be honest. is there a big difference between the two?
thanks for the response. i didn't know there was a diffrence to be honest. is there a big difference between the two?
Can't say, I'm not familiar with Proton.
But BASIC is BASIC so it can't be very different.
That would be a lookup table in PBP.
and you’d generate patterns like that on the fly
Code:pattern var byte i var byte displayram var byte[8] pattern = %11111111 for i = 0 to 7 pattern = pattern << 1 displayram[7-i] = pattern next i
Bookmarks