摘要: // way1 module top_module( input clk, input reset, // Synchronous reset input in, output disc, output flag, output err); parameter NONE = 4'd0,ONE = 4 阅读全文
posted @ 2024-04-16 00:47 江左子固 阅读(15) 评论(0) 推荐(0) 编辑
摘要: See also: Serial receiver and datapath We want to add parity checking to the serial receiver. Parity checking adds one extra bit after each data byte. 阅读全文
posted @ 2024-04-15 23:44 江左子固 阅读(40) 评论(0) 推荐(0) 编辑
摘要: See also: Serial receiver Now that you have a finite state machine that can identify when bytes are correctly received in a serial bitstream, add a da 阅读全文
posted @ 2024-04-15 20:38 江左子固 阅读(21) 评论(0) 推荐(0) 编辑
摘要: In many (older) serial communications protocols, each data byte is sent along with a start bit and a stop bit, to help the receiver delimit bytes from 阅读全文
posted @ 2024-04-15 20:32 江左子固 阅读(25) 评论(0) 推荐(0) 编辑
摘要: See also: PS/2 packet parser. Now that you have a state machine that will identify three-byte messages in a PS/2 byte stream, add a datapath that will 阅读全文
posted @ 2024-04-15 17:58 江左子固 阅读(27) 评论(0) 推荐(0) 编辑
摘要: The PS/2 mouse protocol sends messages that are three bytes long. However, within a continuous byte stream, it's not obvious where messages start and 阅读全文
posted @ 2024-04-15 17:37 江左子固 阅读(31) 评论(0) 推荐(0) 编辑
摘要: Given the following state machine with 1 input and 2 outputs: 题目网站 module top_module( input in, input [9:0] state, output [9:0] next_state, output out 阅读全文
posted @ 2024-04-15 17:07 江左子固 阅读(35) 评论(2) 推荐(1) 编辑
摘要: See also: Lemmings1, Lemmings2, and Lemmings3. Although Lemmings can walk, fall, and dig, Lemmings aren't invulnerable. If a Lemming falls for too lon 阅读全文
posted @ 2024-04-15 02:28 江左子固 阅读(38) 评论(0) 推荐(0) 编辑
摘要: See also: Lemmings1 and Lemmings2. In addition to walking and falling, Lemmings can sometimes be told to do useful things, like dig (it starts digging 阅读全文
posted @ 2024-04-15 00:42 江左子固 阅读(37) 评论(0) 推荐(0) 编辑
摘要: See also: Lemmings1. In addition to walking left and right, Lemmings will fall (and presumably go "aaah!") if the ground disappears underneath them. I 阅读全文
posted @ 2024-04-14 22:43 江左子固 阅读(23) 评论(0) 推荐(0) 编辑