repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
compiler
/
include
/
hardware
/
cpu
/
memory.h
blob
47cb4592cda05fa2b9ec17a90e906e8cbe874546
1
2
/* PAGE_SHIFT determines the page size */
3
#define PAGE_SHIFT 12
4
#define PAGE_SIZE (1UL << PAGE_SHIFT)
5
#define PAGE_MASK (~(PAGE_SIZE-1))
6
7
#define FIXADDR_TOP (0xfffff000UL)