|
Since internal pins cannot be sub-bused, is there a way to send an internal signal directly to an output pin? I ran into this with the ALU trying to set the NG output -- I had to use an intermediate internal signal for the ALU's output so I could pull off the sign bit. Now how do I get the internal signal to the output? I wound up using And16(a=out1, b=out1, out=out), but this seems rather ugly.
I'm running into the same thing now with implementing the CPU... would be nice to be able to "buffer" one signal directly into another one, unless I'm completely missing something -- always possible.
|