jainpranav1 / Nand2Tetris-HDL-Visualizer

Repository for Nand2Tetris HDL Visualizer extension
2 stars 0 forks source link

Question: Recursive Visuals #5

Closed borgmanJeremy closed 1 year ago

borgmanJeremy commented 1 year ago

Is there any way to have this recursively generate the gates down to just NAND gates? What I mean is if I'm making a Mux that uses an And gate which use a Nand gate (etc), can this visualize it all down to the NAND gates?

jainpranav1 commented 1 year ago

Hey! Currently the tool does not provide any way to recursively generate the gates down to just NAND gates. Actually, if the tool did, the diagram would actually become extremely cluttered, but would be interesting to see. If you can figure out how to preprocess HDL files such that they only contain Nand gates, then you can use the visualizer to see the design.

borgmanJeremy commented 1 year ago

Thanks!