|

楼主 |
发表于 2015-4-22 14:20:24
|
显示全部楼层
回复 2# nativeda
跟踪了一下RAM的model,发现model中没有输入的组合。这种情况下可以修改model吗?module a4hvt_dff1_a1_func(Q,CK,D,SE,SELD,SI,notifier);
input CK,D,SE,SELD,SI;
output Q;
input notifier;
...
MGM_IQ_FF_UDP_HVT(IQ,1'b0,1'b0,CK,MGM_D,notifier);
...
endmodule
可以把MGM_IQ_FF_UDP_HVT(IQ,1'b0,1'b0,CK,MGM_D,notifier)改成MGM_IQ_FF_UDP_HVT(IQ,1'b0,1'b1,CK,MGM_D,notifier)吗?
MGM_IQ_FF_UDP_HVT的model如下:
primitive MGM_IQ_FF_UDP_HVT(Q,C,P,CK,D,N);
output Q;
reg Q;
input C,P,CK,D,N;
table
//C P CK D N : Q : Q
...
0 1 ? ? ? : ? : 1
...
endtable
endprimitive |
|