kern

view src/segm.h @ 32:2cb5ab18e76e

merged the task bits, not completed also removed the memory-manager debugging calls from main
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 28 May 2011 08:06:47 +0300
parents b11a86695493
children 4eaecb14fe31
line source
1 #ifndef SEGM_H_
2 #define SEGM_H_
4 #define SEGM_KCODE 1
5 #define SEGM_KDATA 2
6 #define SEGM_UCODE 3
7 #define SEGM_UDATA 4
8 #define SEGM_TASK 5
10 void init_segm(void);
12 uint16_t selector(int idx, int rpl);
15 #endif /* SEGM_H_ */