
Floating Point Support
Single Precision Real
This format would appear in memory as:
(1 binary digit) | |
(2 hex digits. Bias = $7F) | |
(6 hex digits) |
A single precision number takes 4 bytes in memory.
Double Precision Real
This format would appear in memory as:
(1 binary digit) | |
(3 hex digits. Bias = $3FF) | |
(13 hex digits) |
A double precision number takes 8 bytes in memory.
Note The single and double precision formats have an implied integer bit (always 1).
5 |