dword1 SDWORD -12345678h ; signed dword2 DWORD 10 DUP(?) ; unsigned array |
|
QWORD
Data
qword1 QWORD 123456789ABCDEFh
|
|
TBYTE
Data
tbyte1 TBYTE 0123456789ABCDEFh
|
|
REAL4
defines a 4-byte single-precision real variable. REAL8
defines an 8-byte double-precision real, and REAL10
defines a 10-byte double extended-precision real.
rVal1 REAL4 2.5 rVal2 REAL4 -80000.21 rVal3 REAL8 1.024E+04 rVal4 REAL10 3.3455E-39 rArray REAL4 10 DUP(0.0) |
|
Bit Number | 31 | 30 ... 23 | 22 ... 0 |
---|---|---|---|
Component | Sign | Exponent | Mantissa |
Bit Value | 1 | 11111111 | 11111111111111111111111 |