prog8/examples/test.p8
Irmen de Jong af6be44676 ir: adding register usage inspections
fix compiler problems with untrimmed inlined asm, and when only a single return statement is present in a subroutine
2022-09-30 20:25:00 +02:00

8 lines
94 B
Lua

main {
sub start() {
ubyte aa = 42
ubyte bb = 99
aa += bb
}
}