blob: 7ab447fd2a9df57774518f9e949dc084d2d622ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|