I need some help with some basic concepts here.

Newbie Member
18Apr2009,08:40   #1
Punchinello's Avatar
Hello! I'm a beginner of IBM PC assembly language programming and I'm confused with some concepts here so think I need some help.
What are 32-bit instructions and what are 16-bit instructions?
What is operand-size attribute?
And with the MOVSX/MOVZX instrucion, if the destination operand is a 32-bit register and the source operand is a memory location, how does the machine decide whether to read a byte or a word from that location?
Thank you in advance!
~ Б0ЯИ Τ0 С0δЭ ~
8May2009,08:19   #2
SaswatPadhi's Avatar
(1) Do you mean 16 bit and 32 bit instructions or registers ??
16 bit registers are ax, bx, cx, dx and 32 bit registers are eax, ebx, ecx, edx.

(2) Operand size : Any time a memory reference is given as part of an instruction, the size of the memory operand is either implied or must be specified.
Consider this :
Code: asm
mov ax, ds:bx
Here, the operand-size WORD is implied since the AX register is one word in size.

Now, consider this :
Code: asm
inc ds:bx  ;incorrect !!!!!
 
This is incorrect since compiler will be confused whether the value pointed to by bx is byte or word in size.
Correction :
Code: asm
inc word ds:bx  ;increment word at [bx]
 
or
Code: asm
inc byte ds:bx  ;increment byte at [bx]
 
In the correction, word and byte are operand-size attributes.

(3) Partly answered in (2). Look at the first example above :
Code: asm
mov ax, ds:bx
Here compiler assumes that value of [bx] is word because ax has size 1 word. To override, you can write :
Code: asm
mov ax, byte ds:bx
This will move byte value pointed by bx to ax.

Hope I cleared your doubts.
Invasive contributor
20Jun2009,01:40   #3
mayjune's Avatar
very well explained saswat..
Mentor
20Jun2009,03:42   #4
xpi0t0s's Avatar
A 32-bit instruction is an instruction that takes up 32 bits, i.e. 4 bytes, whereas a 16-bit instruction is one that takes up 2 bytes.
Lots of CPUs have varying length instructions, even the old Z80 did; most were one byte but some were as long as 4 bytes.
~ Б0ЯИ Τ0 С0δЭ ~
20Jun2009,07:03   #5
SaswatPadhi's Avatar
Quote:
Originally Posted by mayjune View Post
very well explained saswat..
Thanx for the feedback !