NASM - The Netwide Assembler

NASM Forum => Using NASM => Topic started by: joel on September 15, 2005, 02:28:27 AM

Title: range of db (char), db (int), db (float), dq
Post 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
Title: Re: range of db (char), db (int), db (float), dq
Post by: nasm64developer on September 20, 2005, 05:59:26 PM
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.