2020-09-20 21:49:36 +00:00
|
|
|
%import textio
|
2019-08-05 19:01:41 +00:00
|
|
|
%zeropage basicsafe
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
|
|
|
sub start() {
|
|
|
|
remainder_ubyte(0, 1, 0)
|
|
|
|
remainder_ubyte(100, 6, 4)
|
|
|
|
remainder_ubyte(255, 2, 1)
|
|
|
|
remainder_ubyte(255, 20, 15)
|
|
|
|
|
|
|
|
remainder_uword(0,1,0)
|
|
|
|
remainder_uword(40000,511,142)
|
|
|
|
remainder_uword(40000,500,0)
|
|
|
|
remainder_uword(43211,12,11)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub remainder_ubyte(ubyte a1, ubyte a2, ubyte c) {
|
|
|
|
ubyte r = a1%a2
|
|
|
|
if r==c
|
2020-08-27 16:10:22 +00:00
|
|
|
txt.print(" ok ")
|
2019-08-05 19:01:41 +00:00
|
|
|
else
|
2020-08-27 16:10:22 +00:00
|
|
|
txt.print("err! ")
|
|
|
|
txt.print("ubyte ")
|
|
|
|
txt.print_ub(a1)
|
|
|
|
txt.print(" % ")
|
|
|
|
txt.print_ub(a2)
|
|
|
|
txt.print(" = ")
|
|
|
|
txt.print_ub(r)
|
2019-08-05 19:01:41 +00:00
|
|
|
c64.CHROUT('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
sub remainder_uword(uword a1, uword a2, uword c) {
|
|
|
|
uword r = a1%a2
|
|
|
|
if r==c
|
2020-08-27 16:10:22 +00:00
|
|
|
txt.print(" ok ")
|
2019-08-05 19:01:41 +00:00
|
|
|
else
|
2020-08-27 16:10:22 +00:00
|
|
|
txt.print("err! ")
|
|
|
|
txt.print("uword ")
|
|
|
|
txt.print_uw(a1)
|
|
|
|
txt.print(" % ")
|
|
|
|
txt.print_uw(a2)
|
|
|
|
txt.print(" = ")
|
|
|
|
txt.print_uw(r)
|
2019-08-05 19:01:41 +00:00
|
|
|
c64.CHROUT('\n')
|
|
|
|
}
|
|
|
|
}
|