Mercurial > vba-linux
comparison src/gba/Sram.cpp @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:8ced16adf2e1 | 1:f9f4f1b99eed |
---|---|
1 #include "../common/System.h" | |
2 #include "Flash.h" | |
3 #include "Sram.h" | |
4 | |
5 u8 sramRead(u32 address) | |
6 { | |
7 return flashSaveMemory[address & 0xFFFF]; | |
8 } | |
9 | |
10 void sramWrite(u32 address, u8 byte) | |
11 { | |
12 flashSaveMemory[address & 0xFFFF] = byte; | |
13 systemSaveUpdateCounter = SYSTEM_SAVE_UPDATED; | |
14 } | |
15 |