mirror of
https://wiilab.wiimart.org/wiimart/WiiMart-Patcher
synced 2025-09-02 19:41:13 +02:00

The PowerPC instruction encoder and patching logic is now available at https://github.com/wii-tools/powerpc.
18 lines
258 B
Go
18 lines
258 B
Go
package main
|
|
|
|
import (
|
|
. "github.com/wii-tools/powerpc"
|
|
)
|
|
|
|
var PatchECCfgPath = PatchSet{
|
|
Name: "Change EC Configuration Path",
|
|
Patches: []Patch{
|
|
{
|
|
AtOffset: 3319968,
|
|
|
|
Before: []byte("ec.cfg\x00\x00"),
|
|
After: []byte("osc.cfg\x00"),
|
|
},
|
|
},
|
|
}
|