Consider a machine with word size 6 bits ie W 6 Next Fill t
Consider a machine with word size 6 bits, i.e., W = 6. Next, Fill the following table.
Solution
Given that w=6. Below are the formulae for UMin, UMax, TMin and TMax
Unsigned values
UMin = 0
UMax = 2w-1
Signed values (2\'s complement representation)
TMin = -2w-1
TMax = 2w-1-1
| Binary | Decimal | |
| UMin | 000000 | 0 |
| UMax | 111111 | 63 |
| TMin | 100000 | -32 |
| TMax | 011111 | 31 |
