verilog代码基础

Posted tszs_song

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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代码基础的主要内容,如果未能解决你的问题,请参考以下文章

计算机基础——Verilog语法入门

计算机基础——Verilog语法入门

计算机基础——Verilog语法入门

FPGA/verilog 学习笔记—— Verilog基础语法

从头学起Verilog:Verilog逻辑设计

4.Verilog 基础语法