mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
16 lines
162 B
Lua
16 lines
162 B
Lua
; test_divmode.p8
|
|
%import textio
|
|
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
|
|
main {
|
|
ubyte c
|
|
ubyte l
|
|
|
|
sub start() {
|
|
divmod(99, 10, c, l)
|
|
}
|
|
}
|