1
0
Fork 0
forked from len0rd/rockbox

Rockboy - gameboy emulation for rockbox, based on gnuboy. Still a bit early, but already playable on iRiver H1xx and the simulators. The archos recorder version is currently rather slow...

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6104 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-03-02 23:49:38 +00:00
parent 48dad47df9
commit 384de10246
56 changed files with 9225 additions and 1 deletions

View file

@ -0,0 +1,22 @@
#ifndef __FASTMEM_H__
#define __FASTMEM_H__
#include "defs.h"
#include "mem.h"
byte readb(int a);
void writeb(int a, byte b);
int readw(int a);
void writew(int a, int w);
byte readhi(int a);
void writehi(int a, byte b);
#if 0
byte readhi(int a);
void writehi(int a, byte b);
#endif
#endif