The jam has started but I cannot see what the theme is.
AlanJosko
2
Posts
1
Topics
A member registered Dec 05, 2020
Creator of
Recent community posts
Love this tool! It's super useful. I've got an idea you might want to implement: when creting more than one input/output it adds a decimal representation next to the inputs/outputs, however the number represented is always positive. How about adding the possibility of it being negative without having to have an extra bit to represent its sign? The numbers for 4 bits would be as follows, and I am sure you can deduce how it would be for a bigger o smaller number of bits.
BINARY | DECIMAL |
0000 | 0 |
0001 | 1 |
0010 | 2 |
0011 | 3 |
0100 | 4 |
0101 | 5 |
0110 | 6 |
0111 | 7 |
1000 | -8 |
1001 | -7 |
1010 | -6 |
1011 | -5 |
1100 | -4 |
1101 | -3 |
1110 | -2 |
1111 | -1 |
I think it would be a great improvement because with this system you don't have to create special units to work with negative numbers, instead you only have to rethink the way you read the numbers.
Once again, amazing tool, and thanks so much!