diff src/gb/GB.h @ 96:cb487c4ce5c0

added write-memory!, which allows me to write any value to the gameboy's memory-mapped rom or ram.
author Robert McIntyre <rlm@mit.edu>
date Sun, 11 Mar 2012 23:27:19 -0500
parents 4c60ebca1a9d
children 2090bcb78f44
line wrap: on
line diff
     1.1 --- a/src/gb/GB.h	Sun Mar 11 23:10:44 2012 -0500
     1.2 +++ b/src/gb/GB.h	Sun Mar 11 23:27:19 2012 -0500
     1.3 @@ -48,6 +48,8 @@
     1.4  extern int getRomSize();
     1.5  
     1.6  extern void storeMemory(int32 *);
     1.7 +extern void writeMemory(int32 *);
     1.8 +
     1.9  extern void storeRam(int32 *);
    1.10  extern void storeRom(int32 *);
    1.11  extern void storeWRam(int32 *);