mlibc: Tinycc support: Avoid hex.

* include/00-test.i (main)[__TINYC__]: Do not use $0x.
This commit is contained in:
Jan Nieuwenhuizen 2017-12-04 22:58:10 +01:00
parent 05c33b052a
commit 53695b6124
1 changed files with 1 additions and 1 deletions

View File

@ -39,6 +39,6 @@ main ()
: // no outputs
: "Ir" (r));
asm ("mov $1,%eax");
asm ("int $0x80");
asm ("int $128");
#endif // __GNUC__
}