Verilog Tips 1.module里定义时自动为wire型变量 2.always的@内变量设置为*可以自动匹配输入 3.always模块内被赋值的变量必须是reg型,赋的值类型随意 4.assign时被赋值的变量必须是wire型,赋的值类型随意 Verilog Code `timescale 1ns/1ns module mux4_1( input [1:0]d1,d2,d3,d0, input [1:0]sel, output[1:0]mux_out ); //*************code***********// reg [1:0]mux_out_t; alw...