kern

annotate src/desc.h @ 23:5454cee245a3

- fixed tragic mistake in the initial kernel image mapping - page table modifications by disabling paging first - page allocation completed
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 04 Apr 2011 23:34:06 +0300
parents
children
rev   line source
nuclear@11 1 #ifndef DESC_H_
nuclear@11 2 #define DESC_H_
nuclear@11 3
nuclear@11 4 #include <inttypes.h>
nuclear@11 5
nuclear@11 6 typedef struct {
nuclear@11 7 uint16_t d[4];
nuclear@11 8 } desc_t;
nuclear@11 9
nuclear@11 10 #endif /* DESC_H_ */