Author Topic: range of db (char), db (int), db (float), dq  (Read 6562 times)

joel

  • Guest
range of db (char), db (int), db (float), dq
« 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

nasm64developer

  • Guest
Re: range of db (char), db (int), db (float), dq
« Reply #1 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.