mlibc: Tinycc support: Avoid hex.
* include/00-test.i (main)[__TINYC__]: Do not use $0x.
This commit is contained in:
parent
05c33b052a
commit
53695b6124
|
@ -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__
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue