I've tried the following forms and masm doesnt like any of them:

mov byte [myVariable], al
mov byte ptr [myVariable], al
mov [byte myVariable], al

what am i missing? why cant i seem to use indirect addressing.

the error i get from masm is 'Missing operator in expression" on some of the lines, some of them say "Structure field expected"

link|improve this question

feedback

2 Answers

myVariable equ 0404h

does not declare a variable, it declares a constant. The assembler simply replaces all constants with their values in the object file. Hence,

mov [myVariable], al

becomes

mov [0404h], al

which is invalid.

You have to assign the value to a register, like so:

mov di,0404h
mov byte ptr [di],al
link|improve this answer
feedback
mov [myVariable], al

should be sufficient, or even just:

mov myVariable, al

But then again mov byte ptr [myVariable], al should also work, which makes me wonder "what is 'myVariable'"?

link|improve this answer
it is an address that is declared at the top such as myVariable equ 0404h. then some of the calls are using registers with offsets such as bp+10 – Without Me It Just Aweso Dec 7 '09 at 16:53
the indirect addressing isnt working for and either: and [bp+22h], 77h results in "Invalid instruction operands" – Without Me It Just Aweso Dec 7 '09 at 16:57
Changed it to mov ds:[myvariable], al and got: "Invalid instruction operands" – Without Me It Just Aweso Dec 7 '09 at 16:59
That's really odd. Maybe you should create a really really tiny full example and show us? – danbystrom Dec 7 '09 at 17:00
here is a small test program: .model tiny .stack .186 .code myValue equ 03f6h myValue2 equ 0400h mov bp,myValue and [bp+18h],0feh mov ds:[myValue2],1 jmp [cs:testLabel] testLabel: nop nop jmp testLabel end line 9&10: Invalid instruction operands – Without Me It Just Aweso Dec 7 '09 at 17:06
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.