From 300eb04e2567a284f23edff7a8eef96bcd267254 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 18 Jan 2026 19:40:59 +0100 Subject: feat: compiler_kit: improvements on the assembler and linker. Signed-off-by: Amlal El Mahrouss --- test/test_samples/test_printf.ncpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'test/test_samples/test_printf.ncpp') diff --git a/test/test_samples/test_printf.ncpp b/test/test_samples/test_printf.ncpp index 60a6dbb..d18c818 100644 --- a/test/test_samples/test_printf.ncpp +++ b/test/test_samples/test_printf.ncpp @@ -1,5 +1,9 @@ let main() { - let ret := 100; - return ret; + if (0x01 <= 0x100) + { + return 0x80; + } + + return 0x0; } \ No newline at end of file -- cgit v1.2.3