我的信号肯定是有用的,窄脉冲是用来复位别的寄存器的.代码模块如下:
`timescale 1ns/1ns
module re_fsm(start,re_fsm);
input start;
output re_fsm;
wire re1 /* synthesis syn_keep =1 */;
wire re2 /* synthesis syn_keep =1 */;
wire re3 /* synthesis syn_keep =1 */;
wire re4 /* synthesis syn_keep =1 */;
not inv1(re1,start);
not inv2(re2,re1);
not inv3(re3,re2);
not inv4(re_fsm,re4);
nand(re4,start,re3);
endmodule
|