I request an ncp_set_over macro that lets you define binary data replacements given a symbol name.
This is how you'd use such a feature:
// Replaces data at 0x02012348 with the contents of Test::myVar
ncp_set_over(0x02012348, _ZN4Test5myVarE);
// Replaces data at 0x02100800 in overlay 10 with the contents of Test::func()
ncp_set_over(0x02100800, 10, _ZN4Test4funcEv);
I request an ncp_set_over macro that lets you define binary data replacements given a symbol name.
This is how you'd use such a feature: