摘要: 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 江左子固 阅读(25) 评论(0) 推荐(0) 编辑
摘要: The game Lemmings involves critters with fairly simple brains. So simple that we are going to model it using a finite state machine. In the Lemmings' 阅读全文
posted @ 2024-04-14 04:50 江左子固 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 题目网站 1 module top_module ( 2 input clk, 3 input reset, 4 input [3:1] s, 5 output fr3, 6 output fr2, 7 output fr1, 8 output dfr 9 ); 10 parameter A2=3' 阅读全文
posted @ 2024-04-14 04:36 江左子固 阅读(17) 评论(0) 推荐(0) 编辑
摘要: module top_module( input clk, input in, input reset, output out); // parameter A=2'b00,B=2'b01,C=2'b10,D=2'b11; reg [1:0]state,next_state; // State tr 阅读全文
posted @ 2024-04-14 04:29 江左子固 阅读(17) 评论(0) 推荐(0) 编辑
摘要: See also: State transition logic for this FSM The following is the state transition table for a Moore state machine with one input, one output, and fo 阅读全文
posted @ 2024-04-14 04:18 江左子固 阅读(17) 评论(0) 推荐(0) 编辑
摘要: The following is the state transition table for a Moore state machine with one input, one output, and four states. Use the following one-hot state enc 阅读全文
posted @ 2024-04-14 04:02 江左子固 阅读(18) 评论(0) 推荐(0) 编辑
摘要: The following is the state transition table for a Moore state machine with one input, one output, and four states. Use the following state encoding: A 阅读全文
posted @ 2024-04-14 03:18 江左子固 阅读(22) 评论(0) 推荐(0) 编辑
摘要: This is a Moore state machine with two states, two inputs, and one output. Implement this state machine. This exercise is the same as fsm2, but using 阅读全文
posted @ 2024-04-14 02:41 江左子固 阅读(16) 评论(0) 推荐(0) 编辑
摘要: This is a Moore state machine with two states, two inputs, and one output. Implement this state machine. This exercise is the same as fsm2s, but using 阅读全文
posted @ 2024-04-14 02:17 江左子固 阅读(17) 评论(0) 推荐(0) 编辑
摘要: This is a Moore state machine with two states, one input, and one output. Implement this state machine. Notice that the reset state is B. This exercis 阅读全文
posted @ 2024-04-14 01:14 江左子固 阅读(20) 评论(0) 推荐(0) 编辑
摘要: This is a Moore state machine with two states, one input, and one output. Implement this state machine. Notice that the reset state is B. This exercis 阅读全文
posted @ 2024-04-14 00:45 江左子固 阅读(28) 评论(0) 推荐(0) 编辑