Hello, I have been programming my calculator for a while using the wiki prizm resource.
It has been incredibly usefull to me, but i couldn't help but notice some small bugs/ issues
with some of the example code in the tutorials. For instance:
https://prizm.cemetech.net/Tutorials/Using_the_File_System/
the last example program reads:
hFile = Bfile_OpenFile_OS(pFile, READWRITE); // This opens the file in read/write mode
Bfile_WriteFile_OS(hFile, STR, sizeof(STR));
size = Bfile_GetFileSize_OS(hFile, 0);
it should read:
hFile = Bfile_OpenFile_OS(pFile, READWRITE,0); // This opens the file in read/write mode
Bfile_WriteFile_OS(hFile, STR, sizeof(STR));
size = Bfile_GetFileSize_OS(hFile);
please let me know if this is the wrong place to post.