mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
fix operator for tap.sv
This commit is contained in:
parent
5b50fcd4f4
commit
1deb44b0fc
@ -90,8 +90,8 @@ module tap (
|
||||
updateDR <= State == UpdateDR;
|
||||
end
|
||||
|
||||
assign clockIR = tck || State[0] || ~State[1] || ~State[3];
|
||||
assign clockDR = tck || State[0] || ~State[1] || State[3];
|
||||
assign clockIR = tck | State[0] | ~State[1] | ~State[3];
|
||||
assign clockDR = tck | State[0] | ~State[1] | State[3];
|
||||
assign select = State[3];
|
||||
|
||||
endmodule
|
||||
|
Loading…
Reference in New Issue
Block a user