|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
module top(a, b, y); input a, input b; output [1:0]y ;endmodule
利用这段代码,在dc中使用bus_naming_style将[]改为_,
代码改为
module top(a, b, .y{y_0_, y_1_}); input a, input b; output y_0_, y_1_;endmodule
这段代码中,.y{y_0_, y_1_},为什么是这种形式,为什么y无了
|
|