From 53695b6124d8c373235895ce941ca4bd15648f76 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 4 Dec 2017 22:58:10 +0100 Subject: [PATCH] mlibc: Tinycc support: Avoid hex. * include/00-test.i (main)[__TINYC__]: Do not use $0x. --- include/00-test.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/00-test.i b/include/00-test.i index 674bb0fd..22082756 100644 --- a/include/00-test.i +++ b/include/00-test.i @@ -39,6 +39,6 @@ main () : // no outputs : "Ir" (r)); asm ("mov $1,%eax"); - asm ("int $0x80"); + asm ("int $128"); #endif // __GNUC__ } -- 2.31.1