URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [include/] [linux/] [head.h] - Rev 1765
Compare with Previous | Blame | View Log
#ifndef _LINUX_HEAD_H #define _LINUX_HEAD_H typedef struct desc_struct { unsigned long a,b; } desc_table[256]; extern desc_table idt,gdt; #define GDT_NUL 0 #define GDT_CODE 1 #define GDT_DATA 2 #define GDT_TMP 3 #define LDT_NUL 0 #define LDT_CODE 1 #define LDT_DATA 2 #endif