Constant generation: Difference between revisions
From Rice Wiki
(Created page with "Good design require compromise. To generate a constant, we sacrifice precision, allowing only 8 bits. We then have 4 bits for rotating the value to generate a much greater range of results.") |
m (Rice moved page Constant to Constant generation) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Good design require compromise. To generate a constant, we sacrifice precision, allowing only 8 bits. We then have 4 bits for rotating the value to generate a much greater range of results. | Good design require compromise. To generate a constant, we sacrifice precision, allowing only 8 bits. We then have 4 bits for rotating the value to generate a much greater range of results. | ||
If you want more precision, use additional instructions to OR it. |
Latest revision as of 15:13, 22 May 2024
Good design require compromise. To generate a constant, we sacrifice precision, allowing only 8 bits. We then have 4 bits for rotating the value to generate a much greater range of results.
If you want more precision, use additional instructions to OR it.