Skip to main content
itch.io
Browse Games
Game Jams
Upload Game
Developer Logs
Community
Log in
Register
Indie game store
Free games
Fun games
Horror games
Game development
Assets
Comics
Sales
Bundles
Jobs
Tags
Game Engines
Digital Logic Sim
»
Community
Viewing post in
How to i get AND and NOT gates in the begining?
← Return to game community
stduhpf
181 days ago
NOT(A) = NAND(A,A)
AND(A,B) = NOT(NAND(A,B))
aarondavidleo
124 days ago
But how do you USE them?