News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

fs register syntax question

Started by bushpilot, September 17, 2005, 11:37:30 PM

Previous topic - Next topic

bushpilot

How does one code the following two instructions in GoAsm?

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

Greg

wjr

I prefer the 'before mnemonic' placement of the segment override as follows:

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


WJR