-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path386PDT.ASM
30 lines (27 loc) · 1.23 KB
/
386PDT.ASM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;°±²ÛßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßÛ²±°
;°±²Û A i386(R) protected mode library Û²±°
;°±²Û (C)opyright 1993 by FRIENDS software Û²±°
;°±²Û Descriptor tables (GDT & IDT) Û²±°
;°±²ÛÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ²±°
;********************* Global Descriptor Table (GDT) *************************
; NULL descriptor
GDTdescr GDT
; Supervisor code segment
GDTdescr gdCode,dfCode
; Supervisor data segment
GDTdescr gdData,dfData
; Flat segment (with zero base and 4Gb limit) descriptor
GDTdescr gdFlat,dfData,df4GbLimit
; Video segment descriptor
GDTdescr gdVideo,dfData
; TSS itself
GDTdescr gdTSS,dfTSS
GDTlen equ $-GDT
;******************* Interrupt descriptor table (IDT) ************************
IDTentry = 0
IDT label near
rept TopInt+1
IDTdescr idInt%IDTentry,Int%IDTentry,dfIntGate
IDTentry = IDTentry+1
endm
IDTlen equ $-IDT