Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I know this is a terrible solution, but it works!
When input1 is "1" AND when input2 is "0"
The first thing you need to do is to establish these two signals.
This would be
* input 1.
* the inverted input2.
and then you AND them together.
resulting in
Input1 ----- -----
input2 ---inv----- (AND) ------- output
https://steamcommunity.com/sharedfiles/filedetails/?id=2618499574
You get the same effect if you connect both NAND inputs to the same source.
True, thanks.
It doesn't feel like you have to go THAT far here as we got a global stable clock and the solutions here work fine. I just have a thing about asynchronous logic, I want to see if its possible to build a computer without a global clock.
(But I'm totally with you about asynchronous building. I do a lot of asynchronous and asymmetric style programming.)
I also didn't know that I can rotate gates. Knowing that would have saved me hours. Was there a hint anywhere?
Good at programming but bad at logic gates? That should be impossible, try to look behind the syntax or even right at the syntax (think operators). Programming is in essence nothing more than applying logic to data structures generally larger and more complex than a bit. You just have to learn to see through the syntax and terminology.
You can even apply gate logic just using an if statement by using && (and) and || (or) operators.
===========
0 | 0 | 0
1 | 0 | 1
0 | 1 | 0
1 | 1 | 0
in this case, the only condition that the output will true is important
we must think only for the second line
the answer is (In1 and not In2)
https://steamcommunity.com/sharedfiles/filedetails/?id=2876358497