-
I'm finishing up a brainfuck CPU that'll output to a custom LED display. Is there a built-in component to make Digital refresh the display (lit wires, memory windows, 7-segments, LEDs, everything as when running step-by-step), without stopping/breaking the simulation? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hmm! There is already an automatic refresh. See the ProcessorVonNeumann example. |
Beta Was this translation helpful? Give feedback.
-
I've looked around and couldn't figure out what made ProcessorVonNeumann refresh the circuit while running. Is it the mere presence of a built-in LED display? Some explanation: I hadn't tried the built-in LED display. I wanted to build everything from scratch, including memory, registers, counters and everyting. I ended up using the built-in ones because of performance issues. My ram module (64kiB, 2.5 million gates) did not run (Digital silently gives up during the initialization of the simulation it seems). The 4k one was slow enough. |
Beta Was this translation helpful? Give feedback.
-
Ah, the difference is I hadn't checked "start real time clock". |
Beta Was this translation helpful? Give feedback.
Ah, the difference is I hadn't checked "start real time clock".
Thanks for your help (: