NASM - The Netwide Assembler
NASM Forum => Using NASM => Topic started by: joel on September 15, 2005, 02:28:27 AM
-
hi
can anyone help me the range of db(char), dd(int), dd(float) and dq (double) in nasm
its min and max?
tnx
-
DB = byte = 8-bit
DD = dword = 32-bit
DQ = qword = 64-bit
With that the min/max integer/floating-point
values are the same as for any other language
which uses 8/32/64 bits to store them -- use
a search engine to find out more.