aboutsummaryrefslogtreecommitdiff
path: root/common/subarch.h
blob: 28e2d1dac67e940229d0ffd3ddb735a7502bc98b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * subarch specific definitions
 */

#ifndef SUBARCH_H
#define SUBARCH_H

#include <stdint.h>

#define PAGE_SIZE	4096
#define STACK_PAGES	16
#define KSEG0ADDR(addr)	(((addr) & 0x1fffffff) | 0x80000000)

#endif