码迷,mamicode.com
首页 > 其他好文 > 详细

verilog代码基础

时间:2017-10-16 21:55:47      阅读:139      评论:0      收藏:0      [点我收藏+]

标签: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]};

verilog代码基础

标签:ril   nbsp   mask   bsp   用法   ilo   拼接   https   verilog   

原文地址:http://www.cnblogs.com/zhengmeisong/p/7678358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!