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

View file

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