NASM - The Netwide Assembler
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Home
Help
Search
Calendar
Login
Register
NASM - The Netwide Assembler
»
NASM Forum
»
Using NASM
»
range of db (char), db (int), db (float), dq
« previous
next »
Print
Pages: [
1
]
Author
Topic: range of db (char), db (int), db (float), dq (Read 11435 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
Logged
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.
Logged
Print
Pages: [
1
]
« previous
next »
NASM - The Netwide Assembler
»
NASM Forum
»
Using NASM
»
range of db (char), db (int), db (float), dq