neuromancer
neuromancer

Reputation: 55469

Assembly language variables

What is the assembly language variable bl? How many bits does it hold? Is it a part of a larger variable like EBX?

Upvotes: 0

Views: 1967

Answers (1)

C.Evenhuis
C.Evenhuis

Reputation: 26436

EBX is the 32-bit variant

BX is the 16-bit variant

BH is the high byte of BX

BL is the low byte of BX

Upvotes: 7

Related Questions