The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: bushpilot on September 17, 2005, 11:37:30 PM

Title: fs register syntax question
Post by: bushpilot on September 17, 2005, 11:37:30 PM
How does one code the following two instructions in GoAsm?

mov eax,fs:[0]
mov fs:[0],eax

Greg
Title: Re: fs register syntax question
Post by: wjr on September 18, 2005, 02:15:12 AM
I prefer the 'before mnemonic' placement of the segment override as follows:

FS mov eax,[0]
FS mov [0],eax


WJR