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:
parent
75eeef139c
commit
a91f99d111
|
@ -2495,7 +2495,7 @@ void gbReset()
|
|||
#ifndef NO_LINK
|
||||
if (GetLinkMode() == LINK_GAMEBOY) {
|
||||
EmuReseted = true;
|
||||
gbLinkReset();
|
||||
gbInitLink();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
2727
src/gba/GBALink.cpp
2727
src/gba/GBALink.cpp
File diff suppressed because it is too large
Load Diff
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue