fix FS#8187 - charging breaks sleep timer. Now if the timer goes off and the player...
[Rockbox.git] / apps / plugins / rockboy / fastmem.h
blobcc73a55a9d0c0697410f088519883056e337d68e
2 #ifndef __FASTMEM_H__
3 #define __FASTMEM_H__
6 #include "defs.h"
7 #include "mem.h"
10 byte readb(int a) ICODE_ATTR;
11 void writeb(int a, byte b) ICODE_ATTR;
12 int readw(int a) ICODE_ATTR;
13 void writew(int a, int w) ICODE_ATTR;
14 byte readhi(int a) ICODE_ATTR;
15 void writehi(int a, byte b) ICODE_ATTR;
17 #endif