mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 11:16:42 +01:00
13 lines
221 B
Plaintext
13 lines
221 B
Plaintext
import "env.printChar" fn printChar(i32);
|
|
import "env.printString" fn printString(i32);
|
|
|
|
export fn upd() {
|
|
printString(0x20000);
|
|
}
|
|
|
|
data 0x20000 {
|
|
i8(14, 0xfd, 12) // clear screen to color 0xfd
|
|
"Top left"
|
|
i8(0)
|
|
}
|