Sizes / Words¶
| Type | byte(s) | bits |
|---|---|---|
| BIT | 0 bytes | 1 bit |
| Nibble | 0 bytes | 4 bits |
| BYTE | 1 byte | 8 bits |
| WORD | 2 bytes | 16 bits |
| DWORD | 4 bytes | 32 bits |
| QWORD | 8 bytes | 64 bits |
| Paragraph | 16-byte area | 128 bits |
| Kilobyte | 1024 bytes | |
| Megabyte | 1,048,576 bytes |
Bits¶
| Bit Value | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
|---|---|---|---|---|---|---|---|---|
| Bit Number | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
| Position Value (Power of Base 2) | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
Numeric system¶
| Decimal | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Hex | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F |