diff --git a/examples/test.p8 b/examples/test.p8 index c4f41e539..c7c329b1e 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -8,22 +8,13 @@ main { rsavex() ubyte @shared ub - void asmfoo(42) - main.asmfoo.arg = 42 main.normalfoo.arg=99 - ; normalfoo(42) + void normalfoo(42) somelabel: ub++ txt.print_ub(ub) } - asmsub asmfoo(ubyte arg @Y) -> ubyte @Y { - %asm {{ - iny - rts - }} - } - sub normalfoo(ubyte arg) -> ubyte { arg++ return 42