Changes:
- fixed graphical bugs;
- improved speed of special effects emulation.
Download: SNES9x TYL mecm 091030
Source: tehskeen
Download: StartPatch ModUSE AT YOUR OWN RISK!!
Strongly recommend a NAND backup if possible
We hold no responsibility in the case of a brick! Enjoy!!
Here is "Pimp My Wii", an homebrew that will install missing and outdated titles from your Wii console. A "title" can be an IOS or your Wii version. You can update your Wii securely using this homebrew and you can too update your Wii Shop to have the same advantages than the Wii 4.1 without these disadvantages. The homebrew is displayed automatically in english or french depending of your Wii's language. |
The important point of this video: - The patcher can remove the check deletion of the backup in 4.1 and allow the operation of the fault. - A homebrew (not developed in-house) was used to flash the original backup and replace it with the Team Twizzer Beta2. This will be integrated in future homebrew in the final version, and during the patching of the system menu, the backup will be patched! Also, if you ever delete the backup, simply recreate a normal backup Zelda, then run the patcher in future development. The patcher will dramatically change, the video shows only part of the actual "patch". Similarly, the IOS 249 is a temporary means to install the patches, another vulnerability will be used. |
Jeez, how come no one told me it didn't work? Here, I thought I was done, and I wake up to find out that I released a lemon... Uploading a new version now. Please, everyone who's downloaded it so far, download it again and try it out. And come back and let me know your results! Also, it is now tested on Vista x64 and XP x86, and both worked. So it should work on anything. |
Hi,
This version fix the previous one.
Changelog:
* Fix Stubs detection (stay frozen on "Testing vulnerabilities in IOS" issue);
* Fix IOS Revision number displayed on Reload;
* Code cleanup.
Hi, I've developped my first Homebrew for the Wii. This application does several checks on installed IOS and cIOS: - Trucha Bug; - ES_Identify; - Flash Access. sysCheck generates a report on the root of the SD card (sd:/sysCheck.csv). This Wii Homebrew is a mix between signCheck (by The Lemon Man) and IOSCheck (by Svpe). |
My PSP just finished flashing Yoshihiro’s 5.50 GEN-C… Sadly PlayStation Store access remains blocked. Otherwise, it is what it is… Play 5.55+ required games without the tedious prerequisites — decrypting, patching, rebuilding… You know.
Only install 5.50 GEN-C on PSP-1000 and PSP-2000 models. Do not install on a PSP-3000 or any PSP with a TA-88V3 board.
Note: If the XMB freezes after installing this update, boot (holding R-Trigger) into the recovery console and browse to Advanced -> Format flash1 and reset settings.
Another note: Personally, I don’t recommend updating just yet… Refer to the comments to see what I mean. Although, you can be a sport and install it, report bugs you encounter, and Pandora back afterward. Expect a patch or two soon as well as an option to speed up memory stick access.
Helii is written in C++ and uses libwiisprite for graphics. The source code was designed with clarity in mind. The code will soon be available on GitHub under the New BSD License, which means you are pretty free to do what you want with the code. Please give me a shout if you do something cool with it! I will be happy to merge positive changes and give you attribution for them. |
I developed this tool to aid me in compiling the source for preloader. What it basically does is binds any homebrew application with the appropriate boot loader, calculates the correct offsets and modifies the dol header accordingly. The modified dol will then be able to legally boot in place of the systems menu. It can easily be linked with devkitPro to create a seamless compilation process, for any developer who wishes to develop an application that replaces the systems menu. This is a dangerous tool if you do not know what you are doing, so if you do not have BootMii installed to boot2 or have no idea what the information above means then I strongly suggest that you don't download this tool! CODE ----------------------------- | DolBoot v1.0.2 by phpgeek | ----------------------------- * What is DolBoot? * DolBoot is a simple application that will take a compiled dol file containing a homebrew application for the nintendo wii and bind it with a boot loader. The file can then be launched in place of the official systems menu by replacing the appropriate .app nand file * Do I need to compile my dol differently? * Yes! You need to compile your dol with an entry point of 81000000. Makefile example: LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map -Wl,--section-start,.init=0x81000000 * Can I link DolBoot with my compiling process? * Sure you can! Makefile examples: #--------------------------------------------------------------------------------- $(BUILD): @[ -d $@ ] || mkdir -p $@ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile dolboot $(OUTPUT).dol output.app #--------------------------------------------------------------------------------- or: #--------------------------------------------------------------------------------- run: dolboot $(TARGET).dol target.app #--------------------------------------------------------------------------------- * Usage * dolboot.exe input.dol output.app |