Jump to content

DTR

From EDM2
Revision as of 19:41, 18 May 2025 by Martini (talk | contribs) (Created page with "Data associated with the kernel debugger communications protocol. ==Syntax== <PRE> typedef struct _DTR { WORD DTRLimit; Limit of GDT/IDT register: WORD DTRBaseLow; Bits 0-15 of base address.: WORD DTRBaseHigh; Bits 16-23 of base address.: WORD DTRBaseExt; Bits 24-31 of base address.: } DTR; typedef DTR * DTR ; </PRE> == Type == struct == C Declaration Method == typedef Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Data associated with the kernel debugger communications protocol.

Syntax

typedef struct _DTR {
  WORD     DTRLimit;     /*  Limit of GDT/IDT register */
  WORD     DTRBaseLow;   /*  Bits 0-15 of base address. */
  WORD     DTRBaseHigh;  /*  Bits 16-23 of base address. */
  WORD     DTRBaseExt;   /*  Bits 24-31 of base address. */
} DTR;

typedef   DTR   * DTR ;

Type

struct

C Declaration Method

typedef