git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
af0ae7d57bc457d5cc23fac361efe8389d20c7db
[lunaix-os.git]
/
lunaix-os
/
includes
/
arch
/
x86
/
idt.h
1
#ifndef __LUNAIX_IDT_H
2
#define __LUNAIX_IDT_H 1
3
#define IDT_ATTR(dpl) ((0x70 << 5) | (dpl & 3) << 13 | 1 << 15)
4
5
void
6
_init_idt();
7
#endif