Conversions from numerations bases 2, 10 and 16

Data types

byte = 8 bits

AL

UU

word = 16 bits

AX

UU UU

doubleword = 32 bits

EAX

UU UU UU UU

quadword = 64 bits

    EDX          :          EAX

UU UU UU UU : UU UU UU UU

Constants

  1. number

    e.g. 101b, A061h, -10, 123d

  2. characters

    e.g. ‘a’, ‘B’, ‘d’

  3. strings

    e.g. ‘abcd’, “test”

Variables