This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Electronic circuit model (PoC) | |
// by ddrcode | |
// | |
// PROBLEM | |
// The code below is my attempt to build a model of electronic circuits. | |
// It tries to model a real world, where components (chips) are connected | |
// with each other via pins: each change on output pins triggers an action | |
// on corresponding input pins. | |
// | |
// APPROACH |