1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-26 21:29:48 +00:00
millfork/examples/c64/calculator.mfk

30 lines
536 B
Plaintext
Raw Normal View History

import stdio
import c64_basic
void main() {
word a
word b
2018-12-19 18:01:53 +00:00
putstrz("enter first number:"z)
new_line()
a = readword()
2018-12-19 18:01:53 +00:00
while errno != err_ok {
putstrz("that wasn't a number, try again:"z)
new_line()
a = readword()
}
putstrz("enter second number:{n}"z)
b = readword()
2018-12-19 18:01:53 +00:00
while errno != err_ok {
putstrz("that wasn't a number, try again:"z)
new_line()
b = readword()
}
2018-12-19 18:01:53 +00:00
putstrz("the sum is:"z)
new_line()
putword(a + b)
new_line()
}