I feel like I just turned on cheatcodes due to a meme. Wow. You can just make lots of 2^n belts, have a combiner, and then just set up the binary. But this is a step further! Wild!
So basically you take every number and multiply it by 10 as much as needed for example 1245=1000*1+100*2+10*4+5. How can i find a tutorial or a reference to make this,i dont want to mess up end waste hours for notthing
You nailed it, that's how it works. The basic part is: ADDER -> EXPONENTIATOR -> MULTIPLIER -> ADDER The first 3 parts generates the numer (ie 200 in your example), then the last adder adds this to the previous number (45 in your example) The basic part is repeated a lot of times to make the machine fast.
I feel like I just turned on cheatcodes due to a meme. Wow. You can just make lots of 2^n belts, have a combiner, and then just set up the binary. But this is a step further! Wild!
In fact binary machines is much easier than decimal ones.
Basically you need only 1 and 2 extractors, adders, and multipliers to beat the game. (No, you don't need exponentiators)
Can it run Doom?
So basically you take every number and multiply it by 10 as much as needed for example
1245=1000*1+100*2+10*4+5.
How can i find a tutorial or a reference to make this,i dont want to mess up end waste hours for notthing
You nailed it, that's how it works.
The basic part is: ADDER -> EXPONENTIATOR -> MULTIPLIER -> ADDER
The first 3 parts generates the numer (ie 200 in your example), then the last adder adds this to the previous number (45 in your example)
The basic part is repeated a lot of times to make the machine fast.
@@stabilini are you able to make a tutorial or showcase on how it works?