Can't say, I'm not familiar with Proton.
But BASIC is BASIC so it can't be very different.
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