|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
最近学习ChipScope,在程序中如下
module mycounter(
input reset,
input clk,
output sout
);
reg [19:0] cnt;
reg [10:0] test;
always @(posedge clk) begin
if ( reset ==0)
cnt <= 0;
else begin
cnt <= cnt + 1;
test <= test+1;
end
end
endmodule
在ChipScope的select Net的net name中只有test的信号,而没有cnt的信号,
请问是什么问题,ChipScope不是可以监测内部的所有信号吗? |
|