标签:ril nbsp mask bsp 用法 ilo 拼接 https verilog
verilog拼接符用法: https://zhidao.baidu.com/question/531343285.html
wire [31:0] bit_mask = { {8{be[3]}}, {8{be[2]}}, {8{be[1]}}, {8{be[0]}} };
相当于
wire [31:0] bit_mask = { be[3], be[3],be[3],be[3],be[3],be[3],be[3],be[3],
be[2],be[2],be[2],be[2],be[2],be[2],be[2],be[2],
be[1], be[1],be[1],be[1],be[1],be[1],be[1],be[1],
be[0],be[0],be[0],be[0],be[0],be[0],be[0],be[0]};
标签:ril nbsp mask bsp 用法 ilo 拼接 https verilog
原文地址:http://www.cnblogs.com/zhengmeisong/p/7678358.html