| 489 | #include <dolphin/eth/hashfunc.c> |
| 490 | |
| 491 | static void patchthru(void) { |
| 492 | u32 rnda; |
| 493 | u32 fa; |
| 494 | |
| 495 | writeEXIcmd(0x05, __acstart); |
| 496 | readEXIcmdLong(0x08, &rnda, sizeof(rnda)); |
| 497 | fa = hashfunc(rnda); |
| 498 | writeEXIcmdLong(0x09, &fa, sizeof(fa)); |
| 499 | } |
| 500 | |
| 501 | static void exiinthandler(s32 chan, OSContext* context) { |
| 502 | u8 ir; |
no test coverage detected