FPGA verilog hdl 学习
文章平均质量分 72
dok12
这个作者很懒,什么都没留下…
展开
-
HDL_BITS 学习(9)
verilog hdl bits 练习原创 2022-10-27 23:47:44 · 355 阅读 · 1 评论 -
异步复位同步释放(Synchronized Asynchronous Reset)
verilog reset 中的同步,异步复位的优缺点。转载 2021-12-22 16:00:57 · 356 阅读 · 0 评论 -
HDLBITS 练习 卡诺图化简部分
hdlbits 卡诺图部分原创 2021-12-12 12:41:48 · 9612 阅读 · 0 评论 -
HDL_BITS 练习(8)
hdlbits 练习 基本门电路原创 2021-12-03 17:45:01 · 218 阅读 · 0 评论 -
HDL_BITS 练习(六)
veriloghdl-bits 练习 more verilog features 部分原创 2021-12-03 16:48:04 · 208 阅读 · 0 评论 -
HDL_BITS 练习(五)
veriloghdl-bits 练习 procedure 部分原创 2021-12-03 14:56:33 · 630 阅读 · 0 评论 -
HDL_BITS 练习(四)
verilog 练习网站HDLBits 自学练习,本篇练习是module:hierachy 部分原创 2021-11-14 23:01:27 · 293 阅读 · 0 评论 -
HDL_BITS 练习(三)
1 vector0Build a circuit that has one 3-bit input, then outputs the same vector, and also splits it into three separate 1-bit outputs. Connect outputo0to the input vector's position 0,o1to position 1, etc.三位输入,输出1个三位信号,三个一位信号o2,o1,o0module top_mo...原创 2021-11-13 23:17:34 · 582 阅读 · 0 评论 -
HDL_BITS练习(二)
代码练习:没有用tab键,全部4个空格符代替1 four-wires:module top_module( input a,b,c, output w,x,y,z );//only when you are certain about width of each signals assign {w,x,y,z}={a,b,b,c};endmodule2 inverter:非门hint:Verilog has separate bitwise-NOT...原创 2021-11-13 12:58:58 · 214 阅读 · 0 评论 -
HDL_BITS 练习(一)
HDL_BITS 练习(一)发现一个在线练习Verilog hdl的网站https://hdlbits.01xz.net/wiki/,省去了安装quartus 和xilinx相关软件的功夫,非常适合初学者。在线练习。相关的网站介绍和练习答案CSDN上就有,hdlbits 练习汇总_学渣的博客-CSDN博客_hdlbits,也可以自己百度谷歌都行。本文只是用于自己练习,不足之处不吝指教。1 basics1) simple wire大略翻译:创建分别带有输入输出wire的模...原创 2021-11-13 12:16:35 · 377 阅读 · 0 评论