文章分类 -  Hdlbits的Verilog学习

上一页 1 ··· 3 4 5 6 7
摘要:This problem is similar to module. You are given a module named that has 2 outputs and 4 inputs, in some order. You must connect the 6 ports by name t 阅读全文
posted @ 2023-04-19 10:44 江左子固 阅读(16) 评论(0) 推荐(0)
摘要:This problem is similar to the previous one (module). You are given a module named mod_a that has 2 outputs and 4 inputs, in that order. You must conn 阅读全文
posted @ 2023-04-19 10:27 江左子固 阅读(27) 评论(0) 推荐(0)
摘要:By now, you're familiar with a , which is a circuit that interacts with its outside through input and output ports. Larger, more complex circuits are 阅读全文
posted @ 2023-04-19 09:49 江左子固 阅读(24) 评论(0) 推荐(0)
摘要:The concatenation operator allowed concatenating together vectors to form a larger vector. But sometimes you want the same thing concatenated together 阅读全文
posted @ 2023-04-18 19:36 江左子固 阅读(17) 评论(0) 推荐(0)
摘要:Given an 8-bit input vector [7:0], reverse its bit ordering. See also: Reversing a longer vector. 1 module top_module( 2 input [7:0] in, 3 output [7:0 阅读全文
posted @ 2023-04-18 19:13 江左子固 阅读(24) 评论(0) 推荐(0)
摘要:Part selection was used to select portions of a vector. The concatenation operator {a,b,c} is used to create larger vectors by concatenating smaller p 阅读全文
posted @ 2023-04-18 18:58 江左子固 阅读(39) 评论(0) 推荐(0)
摘要:Build a combinational circuit with four inputs, in[3:0]. There are 3 outputs: out_and: output of a 4-input AND gate. out_or: output of a 4-input OR ga 阅读全文
posted @ 2023-04-18 18:14 江左子固 阅读(33) 评论(0) 推荐(0)
摘要:Build a circuit that has two 3-bit inputs that computes the bitwise-OR of the two vectors, the logical-OR of the two vectors, and the inverse (NOT) of 阅读全文
posted @ 2023-04-18 17:40 江左子固 阅读(24) 评论(1) 推荐(0)
摘要:A 32-bit vector can be viewed as containing 4 bytes (bits [31:24], [23:16], etc.). Build a circuit that will reverse the byte ordering of the 4-byte w 阅读全文
posted @ 2023-04-18 17:38 江左子固 阅读(17) 评论(0) 推荐(0)

上一页 1 ··· 3 4 5 6 7