我正在尝试使用 JK 触发器创建一个 32 位同步计数器。我有一个用于单个 JK 触发器的功能模块......
jkff(J, K, CLK, Q) where the first three are wire inputs and the last is a reg output.
然后我有另一个用于计数器的功能模块......
thirty_two(J, K, CLK, OUT[31:0]) where the first three are inputs and the last is output
在三十二模块中,我实例化了许多 jkff 模块,但我似乎仅限于使用线作为我的输出。因此, OUT[31:0] 是一根电线,而不是我想要的所需寄存器。
有什么建议么?