• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Reverse engineering ARM1

I find that barrel shifter amazing. The ARM core can shift a value in a register in the same as it does the ALU operation. shift and rotating together with an ALU operation without needing extra clock cycles, if i remember correctly.
 
Something I found interesting and surprising was that ARM1 uses a ripple-carry adder in its ALU instead of a more efficient carry-lookahead scheme. This was probably a major limiter in the clock speed. It looks like this was changed for ARM2.
 
Back
Top