15/9/12
使用vivado的RTL Analysis可以查看生成电路图且器件必须set as top
使用ctrl+a/t可以按列选择文本
error
[Synth 8-3966] non-net port in cannot be of mode input: `default_nettype is "none" ["……/YM38.v":25]
input 是不能使用reg 这种定义的
在 always @()里面使用模块是无效的
错误案例:
always @( num or node )
begin
if(select)
//共阳极
smg_a a(.num(num),.node(node),.CX(CX));
else
//共阴极
smg_c c(.num(num),.node(node),.CX(CX));
end
begin end 作用等同于括号
[HDL 9-806] Syntax error near "else".