我正在使用以下原型实现一个简单的程序计数器加法器:
module program_counter(input enable_count,
input enable_overwrite,
input[31:0] overwrite_value,
output[31:0] out);
当使用 Icarus Verilog 进行模拟时,我在第一个滴答声中得到一个无限循环,在该循环上禁用覆盖并启用计数,因此内部寄存器由 PC 加法器 (PC + 4) 的输出提供。
我将问题简化为一段基本代码,其中 D 触发器用作 1 位寄存器:
module register(input in, input set, output out);
wire not_in;
wire q0;
wire not_q0;
wire not_q;
nand (q0, in, set);
not (not_in, in);
nand (not_q0, not_in, set);
nand (out, q0, not_q);
nand (not_q, not_q0, out);
endmodule
module test;
reg clock;
reg in;
wire out;
wire not_out;
xor (x_out, out, 1); // add
or (muxed_out, x_out, in); // mux
register r(muxed_out, clock, out);
initial
begin
$dumpfile("test.vcd");
$dumpvars(0, test);
$display("\tclock,\tin,\tout");
$monitor("\t%b,\t%x,\t%b",
clock, in, out);
#0 assign in = 1; // erase register
#0 assign clock = 1;
#1 assign in = 0;
#1 assign clock = 0;
#2 assign clock = 1;
#3 assign clock = 0;
#4 assign clock = 1;
end
endmodule
模拟卡住后,VCD 输出不显示任何状态变化。
我的猜测是,在特定的滴答声中,加法器不断地输入不同的值(不断地添加),因此它不稳定,模拟器正在等待该值被修复并卡住。
这个设计是否正确(即可以合成并且应该可以工作)?