From: slack Date: Sun, 13 Jul 2008 23:51:45 +0000 (+0200) Subject: Fixed typo in Interrupt Enable port number :P X-Git-Tag: v0.1~23 X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=e105d2a167ebf40c7a5a1cebc2f0d824f9d24fd6;p=wenboi.git Fixed typo in Interrupt Enable port number :P --- diff --git a/GBMemory.h b/GBMemory.h index 7a47a68..14fa201 100644 --- a/GBMemory.h +++ b/GBMemory.h @@ -58,7 +58,7 @@ class GBMemory static const u16 OBP1 = 0xFF49; // Object Pallete 1 data(R/W) static const u16 DMA = 0xFF46; // DMA Transfer & Start addr (W) static const u16 IF = 0xFF0F; // Interrupt flag (R/W) - static const u16 IE = 0xFF0F; // Interrupt enable (R/W) + static const u16 IE = 0xFFFF; // Interrupt enable (R/W) private: static const u16 I_DIV = 0xFF04 - IO_BASE; // Divider register (R/W) @@ -78,7 +78,7 @@ class GBMemory static const u16 I_OBP1 = 0xFF49 - IO_BASE; // Object Pallete 1 data(R/W) static const u16 I_DMA = 0xFF46 - IO_BASE; // DMA Transfer & Start addr (W) static const u16 I_IF = 0xFF0F - IO_BASE; // Interrupt flag (R/W) - static const u16 I_IE = 0xFF0F - IO_BASE; // Interrupt enable (R/W) + static const u16 I_IE = 0xFFFF - IO_BASE; // Interrupt enable (R/W) };