code-reviews

2020-10-06T05:22:46.036400Z

Update: the simulator is done! 256 byte ram, simulated with nand gates in ~350 loc of clojure https://github.com/stopachka/ram/blob/main/src/ram.clj Have no specific questions but if you have thoughts on the code in general — if you would have done certain things in a different or more idiomatic way, am all ears :))

👏 2
littleli 2020-10-06T15:17:21.039400Z

256-byte-size-ram-simulation... nice!

❤️ 1
Ben Sless 2020-10-14T20:02:30.041300Z

Have you considered implementing gates and signals using propagators? They seem like a natural fit

2020-10-14T21:30:19.041500Z

I haven't no, but maybe stopa has.

2020-10-06T05:34:57.036600Z

I haven't read it, but what is it suppose to do?

2020-10-06T05:51:37.038900Z

It answers the question: how do all these simple logic gates come together, to do things like store memory? This simulates 256 bytes of ram, built only with nand gates (similar to how you would actually make it with a circuit)