We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sys_write gets used 3 times before we hard crash on mdbg mode currently. (This is mainly just the memory issue that's being worked on)
We should implement sys_write, but maybe also potentially let it be in the log as well? Currently I use this:
unsafe { let data_slice = std::slice::from_raw_parts(ptr, len); let text_output = String::from_utf8_lossy(data_slice); info!("DEBUG: SYS_WRITE - {}", text_output); }
Which we get (in order)
++++++++++++++++++ I [00:00:00:05:487]:0x0000000000004b74: kernel\src\fs\mod.rs:395 DEBUG: SYS_WRITE - **** Base Mode ****
++++++++++++++++++ I [00:00:00:06:104]:0x0000000000004b74: kernel\src\fs\mod.rs:395 DEBUG: SYS_WRITE - [NpMgrSdkInit ] sceNpManagerPrxStart() sceNpArchInit failed. ret = 0x8055800a
++++++++++++++++++ I [00:00:00:06:104]:0x0000000000004b74: kernel\src\fs\mod.rs:395 DEBUG: SYS_WRITE - [Sysmodule(123) 792] libSceNpManager cannot be loaded (0x80020064)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sys_write gets used 3 times before we hard crash on mdbg mode currently. (This is mainly just the memory issue that's being worked on)
We should implement sys_write, but maybe also potentially let it be in the log as well? Currently I use this:
Which we get (in order)
The text was updated successfully, but these errors were encountered: