The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: keersun on January 22, 2005, 10:29:03 AM

Title: can this works mov al,[ebx+ecx*edx]
Post by: keersun on January 22, 2005, 10:29:03 AM
thanks
Title: Re: can this works mov al,[ebx+ecx*edx]
Post by: Ghirai on January 22, 2005, 11:47:37 AM
mov al, byte ptr[ebx+ecx*edx] should work.
Title: Re: can this works mov al,[ebx+ecx*edx]
Post by: lifewire on January 22, 2005, 02:10:42 PM
no, it shouldn't work for 100% sure. you can only multiply (read: shift to left) with these immediates: 1 2 4 and 8

ghirai: the byte ptr is redundant, as al is an 8 bit register the assembler knows for sure that you want to use 8 bits, there can be no confusion.
Title: Re: can this works mov al,[ebx+ecx*edx]
Post by: rea on January 22, 2005, 04:43:32 PM
For the assembler ;).
Title: Re: can this works mov al,[ebx+ecx*edx]
Post by: hutch-- on January 23, 2005, 11:18:18 AM
Just to tidy up some of the comments here, MASM is normally written in a form of shorthand which means in most instances that you don't need to specifiy the SIZE of the data in complex memory addressing mode if the assembler already has a way of determining the size. Where this shorthand cannot be used is when there is no way for the assembler to determine the data size.


mov [eax+ecx*4+64], 1    ; error

This is because the complex addressing mode is a memory operand and "1" is an immediate value and neither operand tells thew assembler what SIZE is used. In this context you use the data SIZE specifier to tell the assembler the size.


mov WORD PTR [eax+ecx*4+64], 1


It is the ambiguity that produces the problem and the corresponding requirement to specify the size.