mirror of https://github.com/xemu-project/xemu.git
fix _start routine name
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@113 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
27725c1d74
commit
bb326a3749
|
@ -19,7 +19,7 @@ extern inline int write(int fd, const char * buf, int len)
|
||||||
: "0" (__NR_write),"S" ((long)(fd)),"c" ((long)(buf)),"d" ((long)(len)));
|
: "0" (__NR_write),"S" ((long)(fd)),"c" ((long)(buf)),"d" ((long)(len)));
|
||||||
}
|
}
|
||||||
|
|
||||||
void _startup(void)
|
void _start(void)
|
||||||
{
|
{
|
||||||
write(1, "Hello World\n", 12);
|
write(1, "Hello World\n", 12);
|
||||||
exit(0);
|
exit(0);
|
||||||
|
|
Loading…
Reference in New Issue