Jump to content

DTR: Difference between revisions

From EDM2
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"
 
(No difference)

Latest revision as of 18:41, 18 May 2025

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