repo.or.cz
/
kugel-rb
/
myfork.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix FS#10486 - "fuze screen not drawn correctly on backlight turn-on if playlist...
[kugel-rb/myfork.git]
/
apps
/
plugins
/
rockboy
/
fastmem.h
blob
cc73a55a9d0c0697410f088519883056e337d68e
1
2
#ifndef __FASTMEM_H__
3
#define __FASTMEM_H__
4
5
6
#include
"defs.h"
7
#include
"mem.h"
8
9
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
;
16
17
#endif