More Two In Two Out Gates v1.0
Overview
These gates are all inGigavolt Multiple
category, they have these common points:
- The left and right port are input ports.
- The top and back ports are the base output ports, and they output the same voltage.
- The bottom port is overflow, borrowing, etc. output port.
- They all only do positive integer calculation.
Details
Icon Name | Left Input | Right Input | Top & Back Output | Bottom Output | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() Adder |
|
|
Output the lowest 32 bits when overflow. |
Output 1 when overflow. | ||||||||||||||||
![]() Subtracter |
|
|
Add 0xFFFFFFFF when the result is less than 0. |
Output 1 when borrow. | ||||||||||||||||
![]() Multiplier |
|
|
Output the lowest 32 bits when overflow. |
Output the 33rd to 64th bits of the result when overflow. | ||||||||||||||||
![]() Divider |
|
|
Only the integer part of the result is retained during integer calculation. |
Always 0. | ||||||||||||||||
![]() Remainder |
|
|
Only the integer part of the result is retained during integer calculation. |
Always 0. | ||||||||||||||||
![]() Equaler |
|
|
Output 0xFFFFFFFF when two inputs are equal. |
Always 0. | ||||||||||||||||
![]() Greater |
|
|
Output 0xFFFFFFFF when the left input is greater than the right input. |
Always 0. | ||||||||||||||||
![]() No Lesser |
|
|
Output 0xFFFFFFFF when the left input is greater than or equal to the right input. |
Always 0. | ||||||||||||||||
![]() Lesser |
|
|
Output 0xFFFFFFFF when the left input is less than the right input. |
Always 0. | ||||||||||||||||
![]() No Greater |
|
|
Output 0xFFFFFFFF when the left input is less than or equal to the right input. |
Always 0. | ||||||||||||||||
![]() Maximumer |
|
|
Take the larger value of the two inputs as the output. |
Always 0. | ||||||||||||||||
![]() Minimumer |
|
|
Take the smaller value of the two inputs as the output. |
Always 0. | ||||||||||||||||
![]() Left Shifter |
|
|
Output the lowest 32 bits when overflow. |
Output the 33rd to 64th bits of the result when overflow. | ||||||||||||||||
![]() Right Shifter |
|
|
|
The lowest 32 bits of the result of (((Left Input) << 32) >> (Right Input)). | ||||||||||||||||
![]() Power |
|
|
Output the lowest 32 bits when overflow. |
Output the 33rd to 64th bits of the result when overflow. | ||||||||||||||||
![]() Logarithmer |
|
|
Only the integer part of the result is retained during integer calculation. |
Always 0. |