GB IO: Add missing function declaration

This commit is contained in:
Jeffrey Pfau 2016-01-17 14:53:34 -08:00
parent 67050e44dd
commit 5a23814973
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,8 @@ enum GBIORegisters {
struct GB;
void GBIOInit(struct GB* gb);
void GBIOReset(struct GB* gb);
void GBIOWrite(struct GB* gb, unsigned address, uint8_t value);
uint8_t GBIORead(struct GB* gb, unsigned address);