【HDLbits Serial--快速入门Verilog Program】

HDLbits Serial--快速入门Verilog Program


本系列介绍HDLBits刷题快速入门,在上学期间学习可编程逻辑器件这门课时,老师曾建议我们刷过这个网站;希望能帮助刚入门Verilog的读者快速了解语法;
本篇文章主要介绍Verilog中的wire类型和assign赋值语句;
刚兴趣的读者可以了解一下;
HDLbits网站:https://hdlbits.01xz.net/wiki/Main_Page

0 前言

	--support the verilog-2001;
	--1.Design a circuit require several steps: Write HDL code; compile the code to produce a circuit; simulate the circuite and fix the bugs;
		--1.write code: 
		--2.Compile and produce a circuite circuit.
		--3.Simulation: compiled circuit is simulated to test whether it functions correctly.
		--4.compare : compare your compiled circuit and reference circuit; Besides compare the timing diagrams with reference timing diagrams;
	**The top module name and port names must not be changed**
	
	Example: 
		Build a circuit with no inputs and one output that outputs a constant 0;
	```v
	module top_module(
		Output zero
	);
		Assign zero = 1'b0;
	
	endmodule
	```

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值