You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a complete CLI replacement for Magikoopa. At least for NSMB2 its already stable and is being used to build SMBNext. Besides these hks files (ie it just works out of the box with Magikoopa projects) it also supports inline C(++)/ASM hooks like this to make the workflow a bit nicer:
// Places 3 branches with different condition codes/linking to exampleHookmw_b(0x00100040)
mw_bleq(0x0010208C)
mw_bne(0x003A1F38)
intexampleHook() { return3; }
// Replace 5 bytes at 0x006ad410mw_replace(0x006ad410)
charexampleReplaceHook= { 0x42, 0x42, 0x42, 0x42, 0x42 };
Though a bit work is still needed to add proper error messages (right now it just panics with cryptic error messages if something goes wrong). Also some symbols need to be relocated if pre/post hooks are used (those were called "softbranch" in Magikoopa).
No description provided.
The text was updated successfully, but these errors were encountered: