2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
#ifndef __FASTMEM_H__
|
|
|
|
#define __FASTMEM_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "mem.h"
|
|
|
|
|
|
|
|
|
2006-01-20 13:05:52 +00:00
|
|
|
byte readb(int a) ICODE_ATTR;
|
|
|
|
void writeb(int a, byte b) ICODE_ATTR;
|
|
|
|
int readw(int a) ICODE_ATTR;
|
|
|
|
void writew(int a, int w) ICODE_ATTR;
|
|
|
|
byte readhi(int a) ICODE_ATTR;
|
|
|
|
void writehi(int a, byte b) ICODE_ATTR;
|
2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
#endif
|