Re: Setting A in C-instruction

Posted by eatmorepies on
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/Setting-A-in-C-instruction-tp4036936p4036939.html

Thanks for your response. I'll try to summarize it here:

1. In our tick, the registers update their values based on the previous instruction.
2. In our tock, we calculate the new value of the ALU, and this value is sent to our registers. We determine which registers should be set to the new value based on the ddd bits, and we set them.
3. The new register values are emitted in the following tick.

Am I understanding this correctly?