Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
512 B

5 лет назад
  1. %define IDTGateTypeTask32 5
  2. %define IDTGateTypeInt16 6
  3. %define IDTGateTypeTrap16 7
  4. %define IDTGateTypeInt32 14
  5. %define IDTGateTypeTrap32 15
  6. struc IDTE32 ; Interrupt Descriptor Table Entry 32-bit
  7. .OffsetLow: resw ; offset bits 0..15
  8. .CodeSegmentSelector: resw ; a code segment selector in GDT or LDT
  9. .UnusedZero: resb ; unused, set to 0
  10. .GateType: resb ; type and attributes, see below
  11. .OffsetHigh: resw ; offset bits 16..31
  12. endstruc