计算机组成原理实验之八位比较器 verilog实现

Verilog代码

`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company: 
// Engineer: 
// 
// Create Date:    15:34:29 04/21/2018 
// Design Name: 
// Module Name:    LAB12 
// Project Name: 
// Target Devices: 
// Tool versions: 
// Description: 
//
// Dependencies: 
//
// Revision: 
// Revision 0.01 - File Created
// Additional Comments: 
//
//////////////////////////////////////////////////////////////////////////////////
module LAB12(
    input [7:0] a,
    input [7:0] b,
    output reg equ,
    output reg m
    );
always@(a or b)
if (a>b)
	begin
		equ = 0;
		m = 1;
	end
else if(a

仿真代码

`timescale 1ns / 1ps

////////////////////////////////////////////////////////////////////////////////
// Company: 
// Engineer:
//
// Create Date:   16:40:08 04/21/2018
// Design Name:   LAB12
// Module Name:   D:/Xilinx/LAB12/test12.v
// Project Name:  LAB12
// Target Device:  
// Tool versions:  
// Description: 
//
// Verilog Test Fixture created by ISE for module: LAB12
//
// Dependencies:
// 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 
////////////////////////////////////////////////////////////////////////////////

module test12;

	// Inputs
	reg [7:0] a;
	reg [7:0] b;

	// Outputs
	wire equ;
	wire m;

	// Instantiate the Unit Under Test (UUT)
	LAB12 uut (
		.a(a), 
		.b(b), 
		.equ(equ), 
		.m(m)
	);

	initial begin
		// Initialize Inputs
		a = 0;b = 0;
		#5 a = 1;b = 0;
		#5 a = 0;b = 1;
		// Add stimulus here

	end
      
endmodule

仿真图

计算机组成原理实验之八位比较器 verilog实现_第1张图片

计算机组成原理实验之八位比较器 verilog实现_第2张图片

你可能感兴趣的:(计组)