From e94319145f70ec9d258932c8d4a1565b0b5c017d Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Thu, 26 Jan 2023 01:41:44 +0100 Subject: [PATCH] test --- examples/test.p8 | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) 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