M
mnentwig
Guest
(web browser got trigger-happy with the previous post... trying again).
Is there a special term for a register that is never required to keep it
contents for longer than the next clock cycle?
I'm thinking about the following code:
always @(posedge clk) begin
myReg <= 1'bx
case (state)
123: myReg <= someValue
234: myReg <= someOtherValue
default: /* no assignment to myReg */
end
The background is that reuse of the resource is possible across differen
states.
Now how would I call such a register?
---------------------------------------
Posted through http://www.FPGARelated.com
Is there a special term for a register that is never required to keep it
contents for longer than the next clock cycle?
I'm thinking about the following code:
always @(posedge clk) begin
myReg <= 1'bx
case (state)
123: myReg <= someValue
234: myReg <= someOtherValue
default: /* no assignment to myReg */
end
The background is that reuse of the resource is possible across differen
states.
Now how would I call such a register?
---------------------------------------
Posted through http://www.FPGARelated.com