repo.or.cz
/
thunix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add the implementation of tfs
[thunix.git]
/
include
/
rd.h
blob
7e7dba06551eee98945b4ececdd34a55025501fb
1
#ifndef _RD_H
2
#define _RD_H
3
4
5
#define RD_BLOCK_SHIFT 10
6
#define RD_BLOCK_SIZE ( 1 << RD_BLOCK_SHIFT )
7
8
9
extern
unsigned long
ram_start
;
10
11
extern
void
*
bread
(
unsigned int
);
12
extern
void
bwrite
(
unsigned int
,
char
*);
13
14
15
#endif
/* rd.h */