summaryrefslogtreecommitdiffstats
path: root/apps/plugins/rockboy/fastmem.h
blob: cc73a55a9d0c0697410f088519883056e337d68e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef __FASTMEM_H__
#define __FASTMEM_H__


#include "defs.h"
#include "mem.h"


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;

#endif