Moved read/write to .cc
authorJorge Gorbe Moya <jgorbe@dsic.upv.es>
Mon, 16 Jun 2008 13:38:20 +0000 (15:38 +0200)
committerJorge Gorbe Moya <jgorbe@dsic.upv.es>
Mon, 16 Jun 2008 13:38:20 +0000 (15:38 +0200)
GBMemory.cc
GBMemory.h

index 6c5b770113c1f6a31df6d053f2a2ea23eb8c0453..e5015be8d548c915d81d6dcdce519380e6b65aab 100644 (file)
@@ -5,6 +5,16 @@
 #include <iostream>
 #include <sstream>
 #include <iomanip>
+       
+u8   GBIO::read(int addr) const
+{
+       return ports[addr-IO_BASE];
+}
+
+void GBIO::write(int addr, u8 value)
+{
+       ports[addr-IO_BASE] = value;
+}
 
 void GBMemory::write(int addr, u8 value)
 {
index 9c55749b92655b0134c2a86044a5c2a453f73f99..55563f194d045028d850fff7dbee67988d295d48 100644 (file)
@@ -25,8 +25,8 @@ class GBIO
        static const u16 OBP1 = 0xFF49; // Object Pallete 1 data(R/W)
        static const u16 DMA  = 0xFF46; // DMA Transfer & Start addr (W)
 
-       u8   read(int addr) const { return ports[addr-IO_BASE]; }
-       void write(int addr, u8 value) { ports[addr-IO_BASE] = value; }
+       u8   read(int addr) const;
+       void write(int addr, u8 value);
 
 };