repo.or.cz
/
newos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
couple of bits on the x86_64 boot code
[newos.git]
/
boot
/
pc
/
x86_64
/
int86.h
blob
c82c8d092bc9a483f4db13d497ead0bdd5e744c7
1
#ifndef __INT86_H
2
#define __INT86_H
3
4
struct
regs
{
5
unsigned int
eax
;
6
unsigned int
ebx
;
7
unsigned int
ecx
;
8
unsigned int
edx
;
9
unsigned int
esi
;
10
unsigned int
edi
;
11
unsigned short
es
;
12
unsigned short
flags
;
13
};
14
15
void
int86
(
int
interrupt
,
struct
regs
*
r
);
16
17
#endif
18