The Byte Type
The Byte type is coded in 8 bit format.
This table shows the lower/upper limits of the bases which can be used.
Base |
Lower limit |
Upper limit |
---|---|---|
Hexadecimal |
16#0 |
16#FF |
Octal |
8#0 |
8#377 |
Binary |
2#0 |
2#11111111 |
Representation examples:
Data content |
Representation in one of the bases |
---|---|
00001000 |
16#8 |
00110011 |
8#63 |
00110011 |
2#110011 |
The Word Type
The Word type is coded in 16 bit format.
This table shows the lower/upper limits of the bases which can be used.
Base |
Lower limit |
Upper limit |
---|---|---|
Hexadecimal |
16#0 |
16#FFFF |
Octal |
8#0 |
8#177777 |
Binary |
2#0 |
2#1111111111111111 |
Representation examples:
Data content |
Representation in one of the bases |
---|---|
0000000011010011 |
16#D3 |
1010101010101010 |
8#125252 |
0000000011010011 |
2#11010011 |
the Dword Type
The Dword type is coded in 32 bit format.
This table shows the lower/upper limits of the bases which can be used.
Base |
Lower limit |
Upper limit |
---|---|---|
Hexadecimal |
16#0 |
16#FFFFFFFF |
Octal |
8#0 |
8#37777777777 |
Binary |
2#0 |
2#11111111111111111111111111111111 |
Representation examples:
Data content |
Representation in one of the bases |
---|---|
00000000000010101101110011011110 |
16#ADCDE |
00000000000000010000000000000000 |
8#200000 |
00000000000010101011110011011110 |
2#10101011110011011110 |