prog8/examples/test.p8

17 lines
254 B
Plaintext
Raw Normal View History

%import c64utils
2019-01-02 22:32:41 +00:00
~ main {
2019-01-01 20:47:19 +00:00
2019-01-05 17:02:17 +00:00
sub start() {
const word height=25
word rz=33
word persp = (rz+200)
persp = rz / 25
persp = rz / height
persp = (rz+200) / height
2019-01-09 00:03:33 +00:00
}
2019-01-02 22:32:41 +00:00
}