Home | Forums | What's new | Resources | |
Need help with Takashi's Tutorial for Noobs.... |
ramirez60 - Aug 4, 2002 |
Reinhart | Aug 6, 2002 | |||
Need help with Takashi's Tutorial for Noobs.... did you manage to compile the Akira sample as stated in the tutorial ? |
TakaIsSilly | Aug 11, 2002 | |||
Need help with Takashi's Tutorial for Noobs.... Hn, the only chance is if you didn't run setenv.bat first, or if there's a sl.coff file in read-only mode. check for it. |
Reinhart | Aug 11, 2002 | |||
Need help with Takashi's Tutorial for Noobs.... are you sure the sl.cof is not set on readonly ? |
TakaIsSilly | Aug 12, 2002 | ||||
Need help with Takashi's Tutorial for Noobs.... You can't use the "file stream" functions, since that part of the Saturn is slightly complex (ie, you _can_ stream data from the CD, but it needs to know exactly what to do first). You can load files from the CD with a function like this (from the stardust code, based on sample8_8 or 8_9)...
Code:
This loads PONG.SMC from the CD to the pointer ROMChunk and you can play directly with in the fast memory (BTW, read the documentation to use LoWorkRAM, a free space that malloc() does not use). There is a prettier function in the Phoenix emulator, and you can also check the Stardust source code at http://www.clubotaku.org/Saturn... , mainly fileacc.c and main.c. |