News:

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

" or '?

Started by n00b!, August 08, 2008, 12:44:31 PM

Previous topic - Next topic

hutch--

I have noticed it here in OZ as well, seems to happen over the weekend from time to time. Script kiddie at it again ?
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

n00b!

#16
.

hoverlees

#17
the String "Test" has 4 bytes,Just like a DWORD.

if "Test" is stored as byte,in the memory,the sequence is "T","e","s","t"
but if the "Test" is stored as DWORD,in the memory,the sequence is "t","s","e","T"

so

if the memroy sequence is "T","e","s","t" and read out as a DWORD,the DWORD value is "tseT"