Liste der Anhänge anzeigen (Anzahl: 1)
Zitat:
Zitat von Auraomega
Not quite programming, but I need some help on decrypting the pspbtcnf.bin file from the m33 firmwares, don't know where or whom to ask, so if anyone can point me in the right direction I'd apprechiate it.
-Aura
Don't know if you found what you're looking for but look for PSPBT Edit by Zinga Burga (or dl from attached). I think it's what you're looking for: edit the .bin files from 3.5X M33 yea? Well it edits them and he included source code which may help you understand how to decrypt them (look in modMain.bas)
also just a quick question:
The difference between for(;;) and while(1)
It's my understanding that when you use for(;;) it makes the program constantly check the conditions and operations for the "for" every loop i.e. for(conditions 1; conditions 2; operations 3), whereas using a "while" loop makes the program only check the one condition i.e. while(condition).
My question is this: in a large program, could using several for(;;) prove slower than using the while(1)?
I've always used "while" or "do.. while" for my programming but have been seeing a lot of for(;;) lately. Just curious what is the standard practice and which has better performance?