OpenCores
URL https://opencores.org/ocsvn/fluid_core_2/fluid_core_2/trunk

Subversion Repositories fluid_core_2

[/] [fluid_core_2/] [trunk/] [xilinx14.5 project/] [tb_staller.v] - Rev 4

Compare with Previous | Blame | View Log

`timescale 1ns / 1ps
 
module tb_staller;
 
	// Inputs
	reg Clk;
	reg RST;
	reg Stall;
 
	// Outputs
	wire [0:3] stall_lines;
 
	// Instantiate the Unit Under Test (UUT)
	Staller uut (
		.Clk(Clk), 
		.RST(RST), 
		.Stall(Stall), 
		.stall_lines(stall_lines)
	);
 
	initial begin
		// Initialize Inputs
		Clk = 0;
		RST = 1;
		Stall = 0;
 
		// Wait 100 ns for global reset to finish
		#5 RST = 0;
      #65 Stall = 1;
		#5 Stall = 0;
		// Add stimulus here
 
	end
	always begin
		#10 Clk = ~Clk;
	end
 
endmodule
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.