![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on flashing help within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; is there any tutorials or would some one give me some code sippets on how to flash files to your ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#5 |
![]() ![]() The Unique Developer
|
there is a sample of dumping of flashes in PSPSDK samples ....
Search on pspdev on your SDK : fileio and u will find it .. -= Double Post =- or you can PM me I will give you a flashing function ... I hope u understand it
__________________
Malloc.Us Network Administrator Decryption of the Encrypted You are the unseen, the unstoppable and in power of your code. The God of your software. Last edited by the unique warrior; 10-28-2006 at 10:57 PM.. Reason: Automerged Doublepost |
|
|
|
|
|
#6 |
![]() ![]() |
hey i had a look at the pm but it did realy help
i worked out moveing files from psp flash to ms but not back the other way this is the code Code:
if(pad_data.Buttons & PSP_CTRL_SQUARE)
{
dump_filesystem("ms0:/mass_flash/font/", "flash0:/font/");
pspDebugScreenClear();
printf("!!!!!!!! DONE !!!!!!!!!!\n");
show_menu();
}
|
|
|
|
|
|
#7 |
![]() ![]() The Unique Developer
|
that function uses a other function called patch_file /// it adds a slash(/) at the end of the dir u gave . so u have to remove both "/" at the end of each dir .
Code:
if(pad_data.Buttons & PSP_CTRL_SQUARE)
{
dump_filesystem("ms0:/mass_flash/font", "flash0:/font");
pspDebugScreenClear();
printf("!!!!!!!! DONE !!!!!!!!!!\n");
show_menu();
}
__________________
Malloc.Us Network Administrator Decryption of the Encrypted You are the unseen, the unstoppable and in power of your code. The God of your software. |
|
|
|
|
|
#8 |
![]() ![]() |
still no luck
in the split second it prints to the screen it says Writing flash0:/font/LTN.PGF Couldn't open flash0:/font/LTN.PGF -= Double Post =- i update my code to this Code:
if(pad_data.Buttons & PSP_CTRL_SQUARE)
{
write_file("ms0:/mass_flash/font", "flash0:/font", "ltn0.pgf");
pspDebugScreenClear();
printf("!!!!!!!! DONE !!!!!!!!!!\n");
show_menu();
}
Last edited by mafia1ft; 10-30-2006 at 01:54 AM.. Reason: Automerged Doublepost |
|
|
|
![]() |
| Tags |
| flashing |
| Thread Tools | |
|
|