So, at this time I have working swi handler and can run following simple *.elf:
int main()
{
FS_FILE *f;
f = FS_fopen("C:\\data.txt", "wb");
FS_fwrite("Hello!", 6, 1, f);
FS_fclose(f);
return 0;
}
But now we need to create swi library, first 5 functions are reserved:
FS_fopen
FS_fclose
FS_fread
FS_fwrite
malloc_addr
...to be continued...
Any suggestions? Do we need "daemons", elfs that starts on player poweron? Where store data, on registry or we need our format, such as *.bcfg on Siemens? Questions, questions, questions...
|