is there any short form of QWORD?
Dominik
Dominik
DQ ? :)
thx f0dder
db Byte
dw Word
dd Double word
df Fword
dq quad word
dt Reals 10byte fp
dw Word
dd Double word
df Fword
dq quad word
dt Reals 10byte fp
With MASM, the following can also be used:
dd for REAL4 32-bit float (single precision)
dq for REAL8 64-bit float (double precision)
dt for packed decimal used by the FPU
Raymond
dd for REAL4 32-bit float (single precision)
dq for REAL8 64-bit float (double precision)
dt for packed decimal used by the FPU
Raymond
The first 'd' is for "define" the following letter is the short for for the type of variable:
dq - 'Define' 'Quad Word' (4 * 2 bytes)
It comes natural when you know the 'lingo' behind the syntax.
Regards..
:NaN:
dq - 'Define' 'Quad Word' (4 * 2 bytes)
It comes natural when you know the 'lingo' behind the syntax.
Regards..
:NaN:
I always where thinking that dq dd and the others the d mean declare :S