-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Implement file logging to fat:/ntrboot/ntrboot.log #1
Comments
this seems to be the final thing before release! |
Here's the theory for the code: ================================================================= We will write our logMessage so that upon each call, the vector is expanded by one, and the string sent to this function (logMessage), is parsed In the end of all this, we must write our entire vector to ntrboot.log, and we can achieve this by writing a new function called writeBufferLog() logMessage is called, I don't even know how many times, and with each call, a new line is created as well So, every time we call a flashcart_core function (3 times in total: cart->initialize, InjectFIRM and DumpFlash), we will The hardest part of all this is figuring out how va_list works. I must learn how to grab all the unknown number of parameters, This may or may not work. The trickiest parts are string formatting ( |
No description provided.
The text was updated successfully, but these errors were encountered: