FPGA编译后,Inverted Register 指什么类型的寄存器呢?
时间:10-02
整理:3721RD
点击:
在做FPGA优化时,在编译报告中看到Inverted Register这一类寄存器(倒置寄存器),但不明白Inverted Register具体指什么样的寄存器?个人理解:
case(a)
begin
1'b0: b <= b;
1'b1: c <= ~c;
end
上述代码中,寄存器c算是Inverted Register吗? 坐等求解答!
case(a)
begin
1'b0: b <= b;
1'b1: c <= ~c;
end
上述代码中,寄存器c算是Inverted Register吗? 坐等求解答!
是timequest中看到的吗?
