2013-12-15 09:09:20 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/kos_io.h>
|
|
|
|
|
|
|
|
int create_file(const char *path)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
__asm__ __volatile__ (
|
|
|
|
"pushl $0 \n\t"
|
|
|
|
"pushl $0 \n\t"
|
2014-12-05 19:17:47 +01:00
|
|
|
"movl %1, 1(%%esp) \n\t"
|
2013-12-15 09:09:20 +01:00
|
|
|
"pushl $0 \n\t"
|
|
|
|
"pushl $0 \n\t"
|
|
|
|
"pushl $0 \n\t"
|
|
|
|
"pushl $0 \n\t"
|
|
|
|
"pushl $2 \n\t"
|
|
|
|
"movl %%esp, %%ebx \n\t"
|
|
|
|
"movl $70, %%eax \n\t"
|
|
|
|
"int $0x40 \n\t"
|
|
|
|
"addl $28, %%esp \n\t"
|
|
|
|
:"=a" (retval)
|
|
|
|
:"r" (path)
|
|
|
|
:"ebx");
|
|
|
|
return retval;
|
|
|
|
};
|