Forums - Open Redstone Engineers

Full Version: BLE - The Subtractor based CLE *proof of concept
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
The BLE (Borrow Look Everywhere) is a subtractor that uses CLE logic. It is pretty simple surprisingly enough. Could even replace addition logic.

The Logic Behind Subtraction - The Half Subtractor
Let's look at a truth table for the half subtractor first.
[Image: d1hvj77.png]
As you can see, the output looks exactly like the output of an XOR, with the exception of the minus of course.
So in order to output -1, we need to borrow from the next bit. When do we borrow? that's only when B > A. The logic gate we can use for that is B Nimplies A. Now we got an output for the borrow.

Now that we have a half subtractor, let's look into why we can just combine 2 and it becomes a full subtractor.

The Full Subtractor
- RC Subtractor
So just like in an RC adder, you simply put two half subtractors onto each other and OR the borrows. But the reason it works is as follows.
First off since the output of the first half subtractor is supposedly positive, it is supposed to go into the addition input of the second half subtractor, which in this case is A. The borrow is a negative value however, we are subtracting 1 from the next bit when we borrow from it, so it goes to the subtraction input which is the B input in this case. Pretty logical thus far, right?
Now just like in the adder, the borrows are OR'd and you get a ripple borrow adder. You can OR the two borrows together simply because the borrow from one half subtractor can not be on at the same time as the borrow from the other half subtractor. It's simply logic, you can try it out for yourself and try to figure out why. For now it's not important.


- BLE
The borrow look everywhere logic is by far the strangest shit I have dealt with. But I managed to pin it down. I'll need to compare it to the CLE adder to explain it well, though.

so CLE logic is basically minecraft optimised CLA logic, which uses instant diodes. In real life, diodes are not instant. CLA logic can be defined as the addition technique where you literally just calculate all possibilities of a carry before calculating the end result. Let's create the truth table for the borrows. I'll call the generation of borrows for generate and propagation of borrows for propagate, just because I don't know the correct terms for these or if those are even the correct terms.
In order to propagate a borrow, you need 0, right? We get that propagate is XNOR because we get a 0 when inputs are equal. Now in order to generate a borrow, we need to use the generation of borrows explained above. We get that generate is B Nimplies A
[Image: xSRV6Jo.png]

That's it, now you have your borrows. For your second half adders it's simply a matter of XORing the borrows and output from first half subtractors together as we have concluded beforehand.


I have built it and this is the result, I made it into an ALU pretty easily. Only thing with this particular design is I made the OR be B Nimplies A instead. Not really necessary, but my first XOR was based on 2 Nimplies gates OR'd together so it was easier to make it as such
[Image: C0V4Ir2.png]

My subtractor is however poorly optimized and slow, it acts for the most part as a proof of concept. I haven't bothered to count how long a calculation might take, but if I have to guess, it's prboably 5-7 ticks. Yes, it's also non-synced. I believe however that I could easily boil that down to 4 ticks synced. I will definitely be looking into it, but for now, this is it. To get to this subtractor, you can do /warp BLE.

- Pablo
Well that cool!
Where did the concept come from?
Well, at first I wanted to try make a subractor, just for lulz. Eventually it elevated and I decided to make it an ALU. I tried to see what concepts I could apply subtraction to. And out came the BLE
With work along with magic himself, we have made a subtractor based CCA ALU. I have called it BCS for Borrow Cancel Subtractor. for anyone that hasn't heard of CCA, then here is the link to magic's thread about it
Image:
[Image: 1s0jdQj.png]

You can teleport to this BCS by doing /warp BCS

Explanation of the logic might come soon
:O subtraction based ALUs are the future!
Yes it we can make that faster then addition based ones.
Wow very inspirational work tbh, try applying it to PLA?
Thanks! I can try apply it to PLA, but it won't be easy. PLA is somewhat foreign to me. Though now that I think of it, CCA was too before I worked on it with magic.
heh PLA -> PLS pls
Pages: 1 2