自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

刚及格的陆拾伍的博客

一个刚刚及格的人

  • 博客(73)
  • 收藏
  • 关注

原创 HDLbits 刷题 -- Exams/m2014 q3

(原试题要求简化该函数的SOP和POS形式。考虑下面卡诺图中显示的函数f。分析:四个角的位置可以圈在一起。

2024-05-10 19:16:16 191

原创 HDLbits 刷题 -- Exams/m2014 q3

Exams/m2014 q3 Consider the functionfshown in the Karnaugh map below.

2024-05-09 19:11:40 186

原创 HDLbits 刷题 -- Exams/ece241 2013 q2

一个计算POS的偷懒方法: 先按照SOP的形式写出式子(是否取反按照POS的概念来定),简化后,再将各输入之间的与改为或,各输出之间的或改为与;- 在卡诺图中,SOP通常通过将1(真值)所在的单元格圈起来,然后找到这些圈能够覆盖的最小数量的单元格,每个圈代表一个AND门的乘积项。- 在卡诺图中,要得到POS形式,可以想象将SOP形式中的1和0互换,然后再次应用SOP的圈定方法,得到的圈将代表OR门的求和项。”,是一种将逻辑函数表示为AND(与)门的输出进行OR(或)连接的形式。

2024-05-09 19:01:10 424

原创 HDLbits 刷题 -- Kmap4

mplement the circuit described by the Karnaugh map below.

2024-04-25 18:42:46 259

原创 HDLbits 刷题 -- Kmap3

Implement the circuit described by the Karnaugh map below.

2024-04-25 18:24:40 213

原创 HDLbits 刷题 -- Kmap2

Implement the circuit described by the Karnaugh map below.

2024-04-22 19:37:11 426

原创 HDLbits 刷题 -- Kmap1

mplement the circuit described by the Karnaugh map below.

2024-04-22 19:03:07 328

原创 HDLbits 刷题 -- Bcdadd4

You are provided with a BCD (binary-coded decimal) one-digit adder namedbcd_faddthat adds two BCD digits and carry-in, and produces a sum and carry-out.

2024-04-19 19:13:01 301

原创 HDLbits 刷题 -- Adder100

Create a 100-bit binary adder. The adder adds two 100-bit numbers and a carry-in to produce a 100-bit sum and carry out.

2024-04-19 18:52:19 261

原创 HDLbits 刷题 -- Exams/ece241 2014 q1c

Assume that you have two 8-bit 2's complement numbers, a[7:0] and b[7:0]. These numbers are added to produce s[7:0]. Also compute whether a (signed) overflow has occurred.

2024-04-18 19:29:11 496

原创 HDLbits 刷题 -- Exams/m2014 q4j

Exams/m2014 q4j Implement the following circuit:

2024-04-18 19:03:53 158

原创 HDLbits 刷题 -- Adder3

​Now that you know how to build afull adder, make 3 instances of it to create a 3-bit binary ripple-carry adder. The adder adds two 3-bit numbers and a carry-in to produce a 3-bit sum and carry out. To encourage you to actually instantiate full adders, a

2024-04-17 19:00:46 873

原创 HDLbits 刷题 -- Fadd

Create a full adder. A full adder adds three bits (including carry-in) and produces a sum and carry-out.

2024-04-17 18:48:24 339

原创 HDLbits 刷题 -- Hadd

Create a half adder. A half adder adds two bits (with no carry-in) and produces a sum and carry-out.

2024-04-17 18:45:45 159

原创 HDLbits 刷题 --Mux256to1v

Create a 4-bit wide, 256-to-1 multiplexer. The 256 4-bit inputs are all packed into a single 1024-bit input vector. sel=0 should select bitsin[3:0], sel=1 selects bitsin[7:4], sel=2 selects bitsin[11:8], etc.

2024-04-17 18:42:37 233

原创 HDLbits 刷题 -- Mux256to1

Create a 1-bit wide, 256-to-1 multiplexer. The 256 inputs are all packed into a single 256-bit input vector. sel=0 should selectin[0], sel=1 selects bitsin[1], sel=2 selects bitsin[2], etc.

2024-04-17 18:28:29 205

原创 HDLbits 刷题 -- Mux9to1v

Create a 16-bit wide, 9-to-1 multiplexer. sel=0 chooses a, sel=1 chooses b, etc. For the unused cases (sel=9 to 15), set all output bits to '1'.

2024-04-17 18:24:14 220

原创 HDLbits 刷题 --Mux2to1v

Create a 100-bit wide, 2-to-1 multiplexer. When sel=0, choose a. When sel=1, choose b.

2024-04-16 19:34:06 378

原创 HDLbits 刷题 --Mux2to1

Create a one-bit wide, 2-to-1 multiplexer. When sel=0, choose a. When sel=1, choose b.

2024-04-16 19:21:31 141

原创 HDLbits 刷题 --Gatesv100

You are given a 100-bit input vector in[99:0]. We want to know some relationships between each bit and its neighbour:

2024-04-16 19:05:59 459

原创 HDLbits 刷题 --Gatesv

You are given a four-bit input vector in[3:0]. We want to know some relationships between each bit and its neighbour:

2024-04-15 18:43:16 486

原创 HDLbits 刷题 --Popcount3

A "population count" circuit counts the number of '1's in an input vector. Build a population count circuit for a 3-bit input vector.译:“人口计数”电路计算输入向量中“1”的数量。为一个3位输入向量建立一个人口计数电路。个人解法:官方解法:运行结果:

2024-04-12 18:26:46 314 1

原创 HDLbits 刷题 --Thermostat

A heating/cooling thermostat controls both a heater (during winter) and an air conditioner (during summer). Implement a circuit that will turn on and off the heater, air conditioning, and blower fan as appropriate.

2024-04-12 18:14:27 253

原创 HDLbits 刷题 -- Ringer

Suppose you are designing a circuit to control a cellphone's ringer and vibration motor. Whenever the phone needs to ring from an incoming call (inputring), your circuit must either turn on the ringer (outputringer= 1) or the motor (outputmotor= 1), b

2024-04-12 18:04:27 453

原创 HDLbits 刷题 --Mt2015 q4

​Seemt2015_q4aandmt2015_q4bfor the submodules used here. The top-level design consists of two instantiations each of subcircuits A and B, as shown below.​

2024-04-11 19:14:42 205

原创 HDLbits 刷题 --Mt2015 q4b

【代码】HDLbits 刷题 --Mt2015 q4b。

2024-04-11 19:09:08 124

原创 HDLbits 刷题 --Mt2015 q4a

【代码】HDLbits 刷题 --Mt2015 q4a。

2024-04-11 19:07:08 192

原创 HDLbits 刷题 --Mt2015 eq2

Create a circuit that has two 2-bit inputsA[1:0]andB[1:0], and produces an outputz. The value ofzshould be 1 ifA = B, otherwisezshould be 0.

2024-04-10 19:19:28 206

原创 HDLbits 刷题 --Truthtable1

In the previous exercises, we used simple logic gates and combinations of several logic gates. These circuits are examples of combinational circuits. Combinational means the outputs of the circuit is a function (in the mathematics sense) of only its inputs

2024-04-10 19:10:04 1003

原创 HDLbits 刷题 --7420

The 7400-series integrated circuits are a series of digital chips with a few gates each. The 7420 is a chip with two 4-input NAND gates.Create a module with the same functionality as the 7420 chip. It has 8 inputs and 2 outputs.

2024-04-10 18:50:33 201

原创 HDLbits 刷题 --Gates

Ok, let's try building several logic gates at the same time. Build a combinational circuit with two inputs,aandb.There are 7 outputs, each with a logic gate driving it:

2024-04-10 18:44:40 109

原创 HDLbits 刷题 --Exams/m2014 q4g

Exams/m2014 q4g

2024-04-10 18:30:33 209

原创 HDLbits 刷题 --Exams/m2014 q4f

【代码】HDLbits 刷题 --Exams/m2014 q4f。

2024-04-10 18:24:15 182

原创 HDLbits 刷题 --Exams/m2014 q4e

【代码】HDLbits 刷题 --Exams/m2014 q4e。

2024-04-10 18:20:02 119

原创 HDLbits 刷题 --Exams/m2014 q4i

【代码】HDLbits 刷题 --Exams/m2014 q4i。

2024-04-10 18:15:55 186

原创 HDLbits 刷题 --Exams/m2014 q4h

Implement the following circuit:

2024-04-10 18:13:08 95

原创 PADS 使用笔记--全流程

PADS 使用全流程,从建立元件,到生成gerber文件,保姆级笔记教程;疏漏之处评论讨论;

2024-04-10 17:28:37 3890

原创 HDLbits 刷题 --Bcdadd100

Instantiate 100 copies ofbcd_faddto create a 100-digit BCD ripple-carry adder. Your adder should add two 100-digit BCD numbers (packed into 400-bit vectors) and a carry-in to produce a 100-digit sum and carry out.

2024-04-09 19:38:09 761

原创 HDLbits 刷题 --Adder100i

​Create a 100-bit binary ripple-carry adder by instantiating 100full adders. The adder adds two 100-bit numbers and a carry-in to produce a 100-bit sum and carry out. To encourage you to actually instantiate full adders, also output the carry-out fromea

2024-04-08 19:46:45 1062

原创 HDLbits 刷题 --Popcount255

A "population count" circuit counts the number of '1's in an input vector. Build a population count circuit for a 255-bit input vector.

2024-04-08 18:53:11 216

最全ASCII码表.docx

最全ASCII码 - 基本ASCII码和扩展ASCII码,最全的ASCII码对照表;

2024-03-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除