上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: Conway's Game of Life is a two-dimensional cellular automaton. The "game" is played on a two-dimensional grid of cells, where each cell is either 1 (a 阅读全文
posted @ 2024-04-12 16:24 江左子固 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Rule 110 is a one-dimensional cellular automaton with interesting properties (such as being Turing-complete). There is a one-dimensional array of cell 阅读全文
posted @ 2024-04-12 16:20 江左子固 阅读(22) 评论(0) 推荐(0) 编辑
摘要: Rule 90 is a one-dimensional cellular automaton with interesting properties. The rules are simple. There is a one-dimensional array of cells (on or of 阅读全文
posted @ 2024-04-12 16:16 江左子固 阅读(47) 评论(0) 推荐(0) 编辑
摘要: In this question, you will design a circuit for an 8x1 memory, where writing to the memory is accomplished by shifting-in bits, and reading is "random 阅读全文
posted @ 2024-04-11 17:04 江左子固 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Write a top-level Verilog module (named top_module) for the shift register, assuming that n = 4. Instantiate four copies of your MUXDFF subcircuit in 阅读全文
posted @ 2024-04-11 16:59 江左子固 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Implement the following circuit: 题目网站 module top_module ( input clk, input resetn, // synchronous reset input in, output out); reg [3:0]q; assign out= 阅读全文
posted @ 2024-04-11 16:52 江左子固 阅读(10) 评论(0) 推荐(0) 编辑
摘要: See Lfsr5 for explanations. Build a 32-bit Galois LFSR with taps at bit positions 32, 22, 2, and 1. 题目网站 module top_module( input clk, input reset, // 阅读全文
posted @ 2024-04-11 16:47 江左子固 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Write the Verilog code for this sequential circuit (Submodules are ok, but the top-level must be named top_module). Assume that you are going to imple 阅读全文
posted @ 2024-04-11 16:41 江左子固 阅读(12) 评论(0) 推荐(0) 编辑
摘要: A linear feedback shift register is a shift register usually with a few XOR gates to produce the next state of the shift register. A Galois LFSR is on 阅读全文
posted @ 2024-04-11 15:54 江左子固 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Build a 64-bit arithmetic shift register, with synchronous load. The shifter can shift both left and right, and by 1 or 8 bit positions, selected by a 阅读全文
posted @ 2024-04-11 15:32 江左子固 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页