Initial refactor of the GBA link code.

The code has been rearranged with the link framework at the top, followed by cable socket, joybus socket, cable IPC, RFU IPC and lastly, GB link IPC.
This commit is contained in:
skidau 2015-04-03 22:35:13 +00:00
parent 75eeef139c
commit a91f99d111
3 changed files with 1368 additions and 1363 deletions

View File

@ -2495,7 +2495,7 @@ void gbReset()
#ifndef NO_LINK
if (GetLinkMode() == LINK_GAMEBOY) {
EmuReseted = true;
gbLinkReset();
gbInitLink();
}
#endif

File diff suppressed because it is too large Load Diff

View File

@ -198,7 +198,7 @@ extern u8 gbSIO_SC;
extern bool LinkIsWaiting;
extern bool LinkFirstTime;
extern bool EmuReseted;
extern void gbLinkReset();
extern void gbInitLink();
extern u8 gbStartLink(u8 b);
extern u16 gbLinkUpdate(u8 b, int gbSerialOn);