Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TYPE'ing quadwords to doublewords 1

Status
Not open for further replies.

WannabeAssembler

Technical User
Apr 6, 2004
1
US
Why would this statement

mov (type dword rfibsum), eax

where rfibsum is declared as a quadword
give me this error

error A2206: missing operator in expression

My declaration is as follows

.data
rfibsum qword ?

I'm using Art of Assembly as a reference for the advanced arithmetic


Any advice/help would be greatly appreciated. Thanks,
 
... not sure, might be your assembler uses different syntax. For this I'd use
mov dword ptr MyVariable, eax
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top