mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-05 00:05:44 +00:00
23 lines
416 B
Plaintext
23 lines
416 B
Plaintext
import stdio
|
|
|
|
array p = [
|
|
"this is an example", 13,
|
|
"of multiline petscii text"
|
|
]
|
|
|
|
array s = [
|
|
"and this is an example " scr,
|
|
"of text done in screencodes" scr
|
|
]
|
|
|
|
array screen [1000] @$400
|
|
|
|
void main(){
|
|
byte i
|
|
putstr(p, p.length)
|
|
for i,0,paralleluntil,s.length {
|
|
screen[20 * 40 + i] = s[i]
|
|
c64_color_ram[20 * 40 + i] = light_blue
|
|
}
|
|
while(true){}
|
|
} |