prog8/examples/test.p8

35 lines
395 B
Plaintext
Raw Normal View History

2020-03-24 23:32:54 +00:00
%import c64lib
%import c64utils
%import c64flt
%zeropage basicsafe
2020-07-02 19:21:40 +00:00
%option enable_floats
2020-06-14 00:39:48 +00:00
2020-03-24 23:32:54 +00:00
main {
2020-07-02 19:21:40 +00:00
sub start() {
ubyte xx = 10
float ff = 4
float ff2 = 4
2020-06-27 14:51:25 +00:00
2020-07-02 19:21:40 +00:00
; xx /= 2
;
; xx /= 3
;
; xx *= 2
; xx *= 3
2020-06-27 14:51:25 +00:00
2020-07-02 19:21:40 +00:00
;ff **= 2.0
;ff **= 3.0
2020-06-27 14:51:25 +00:00
2020-07-02 19:21:40 +00:00
ff = ff2 ** 2.0
ff = ff2 ** 3.0
; xx = xx % 5
; xx %= 5
}
2020-06-14 00:39:48 +00:00
2020-03-21 17:39:36 +00:00
}
2020-03-24 23:32:54 +00:00