From e105d2a167ebf40c7a5a1cebc2f0d824f9d24fd6 Mon Sep 17 00:00:00 2001 From: slack Date: Mon, 14 Jul 2008 01:51:45 +0200 Subject: [PATCH] Fixed typo in Interrupt Enable port number :P --- GBMemory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) }; -- 2.34.1