当前位置:   article > 正文

【数字电路与系统】【北京航空航天大学】实验:时序逻辑设计——三色灯开关(三)、功能仿真测试

【数字电路与系统】【北京航空航天大学】实验:时序逻辑设计——三色灯开关(三)、功能仿真测试

本次实验(一)见博客:【数字电路与系统】【北京航空航天大学】实验:时序逻辑设计——三色灯开关(一)、实验指导书

本次实验(二)见博客:【数字电路与系统】【北京航空航天大学】实验:时序逻辑设计——三色灯开关(二)、需求分析和系统设计

说明:本次实验的代码使用verilog编写,文章中为阅读方便,故采用matlab代码格式。

2.3、功能仿真测试

2.3.1、测试程序设计
//mode_run模块:
因为仿真本来就是理想信号,所以需要去掉debounce模块进行仿真

module test2;

	// Inputs
	reg clk;
	reg rst;
	reg key0;
	reg key1;

	// Outputs
	wire [3:0] led;

	// Instantiate the Unit Under Test (UUT)
	mode_run_1 uut (
		.clk(clk), 
		.rst(rst), 
		.key0(key0), 
		.key1(key1), 
		.led(led)
	);

	initial begin
		// Initialize Inputs
		clk = 0;
		rst = 0;
		key0 = 0;
		key1 = 0;

		// Wait 100 ns for global reset to finish
		#100;
        
		// Add stimulus here

	end
   #10 clk = ~clk;
   #1000 key0 = ~key0;	
endmodule
//mode_demo模块:
因为仿真本来就是理想信号,所以需要去掉debounce模块进行仿真
module mode_demo_1_sim;

	// Inputs
	reg clk;
	reg rst;
	reg key_0;
	reg key_1;

	// Outputs
	wire dp;
	wire [6:0] light;
	wire [1:0] com;

	// Instantiate the Unit Under Test (UUT)
	mode_demo_1 uut (
		.clk(clk), 
		.rst(rst), 
		.key_0(key_0), 
		.key_1(key_1), 
		.dp(dp), 
		.light(light), 
		.com(com)
	);

	initial begin
		// Initialize Inputs
		clk = 0;
		rst = 0;
		key_0 = 0;
		key_1 = 0;

		// Wait 100 ns for global reset to finish
		#100;
       rst = 1;
		// Add stimulus here

	end
   always #10 clk = ~clk;
	always #10000 key_0 = ~key_0;
endmodule
//Uart_top模块:
	module uart_top_tb;

	// Inputs
	reg Sys_CLK;
	reg Sys_RST;
	reg [1:0] Key_In;

	// Outputs
	wire Signal_Tx;
	

	// Instantiate the Unit Under Test (UUT)
	Uart_Top uut (
		.Sys_CLK(Sys_CLK), 
		.Sys_RST(Sys_RST), 
		.Key_In(Key_In), 
		.Signal_Tx(Signal_Tx)
	);

	initial begin
		// Initialize Inputs
		Sys_CLK = 0;
		Sys_RST = 1;
		Key_In = 0;

		// Wait 100 ns for global reset to finish
		#100;
		Sys_RST = 0;
		#100;
		Sys_RST = 1;
		
		#100000000;
		Key_In = 2'b01;
		#100000000;
		Key_In = 2'b00;
		
		#100000000;
		Key_In = 2'b01;
		#150000000;
		Key_In = 2'b00;
		
		#100000000;
		Key_In = 2'b01;
		#200000000;
		Key_In = 2'b10;
		#100000000;
		Key_In = 2'b00;
		
        
		// Add stimulus here

	end
	
	
always #10 Sys_CLK = ~Sys_CLK;


endmodule
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
2.3.2、功能仿真过程

//mode_run模块:

在这里插入图片描述

图 2 mode_run仿真

//mode_demo模块:

在这里插入图片描述

图 3 mode_demo仿真

//Uart_top模块:

在这里插入图片描述

图 4 Uart_top仿真

2.3.2、实验关键结果及其解释

//mode_run模块:
在mode_run仿真过程中,在key0置1过后,状态机进入白光—灭—日光—灭—黄光—灭的循环,仿真结果符合实验需求。
//mode_demo模块:
在mode_demo仿真过程中,在key0置1过后,状态机也进入了白光—灭—日光—灭—黄光—灭的循环,仿真结果符合实验需求。
//Uart_top模块:
在Uart_top模块中,Sw不断变化后,按下Key,将Sw的变化一次发送到Tx显示,仿真符合实验设计要求。

(未完待续)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/467704
推荐阅读
相关标签
  

闽ICP备14008679号