Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Digital Logic Sim

​A minimalistic digital logic simulator · By Sebastian Lague

How to i get AND and NOT gates in the begining?

A topic by sofus72 created 64 days ago Views: 329 Replies: 4
Viewing posts 1 to 3

i literally just downloaded this like 40 min ago and i see that in the earlier versions you can get the and and not gates but in this all i have in a NAND gate, and i kinda need those 2 other gates. im confiesed how to get them in the new release?

(1 edit)

All gates can be built using nothing but NAND gates

https://itch.io/t/4764134/readme-if-only-nand-appears-

thank you very much!!!!

NOT(A)  =  NAND(A,A)
AND(A,B) = NOT(NAND(A,B))

But how do you USE them?