-
Notifications
You must be signed in to change notification settings - Fork 0
/
audioBRAM_test.v
54 lines (43 loc) · 985 Bytes
/
audioBRAM_test.v
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
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 16:20:26 10/09/2012
// Design Name: audiocpu_BRAM
// Module Name: /afs/ece.cmu.edu/usr/isimha/BRAM/audioBRAM_test.v
// Project Name: BRAM
// Target Device:
// Tool versions:
// Description:
//
// Verilog Test Fixture created by ISE for module: audiocpu_BRAM
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
////////////////////////////////////////////////////////////////////////////////
module audioBRAM_test;
// Inputs
reg clka;
reg [13:0] addra;
// Outputs
wire [7:0] douta;
// Instantiate the Unit Under Test (UUT)
audiocpu_BRAM uut (
.clka(clka),
.addra(addra),
.douta(douta)
);
initial begin
// Initialize Inputs
clka = 0;
addra = 0;
// Wait 100 ns for global reset to finish
#100;
// Add stimulus here
end
endmodule