From 5a23814973225c02c4e2eff79623e55e6c98904b Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sun, 17 Jan 2016 14:53:34 -0800 Subject: [PATCH] GB IO: Add missing function declaration --- src/gb/io.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gb/io.h b/src/gb/io.h index 41a516d65..656a9d9e5 100644 --- a/src/gb/io.h +++ b/src/gb/io.h @@ -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);