-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTOP.v
More file actions
58 lines (53 loc) · 1.05 KB
/
TOP.v
File metadata and controls
58 lines (53 loc) · 1.05 KB
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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 10/18/2022 10:22:30 AM
// Design Name:
// Module Name: TOP
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
/*******************************************************************
*
* Module: TOP.v
* Project: RV32
* Author: Farah Kabesh , Karim el Genidy , Omar fayed
* Description: This is the top module for the fpga
*
**********************************************************************/
//////////////////////////////////////////////////////////////////////////////////
module TOP(
input clk,
input rst,
input [1:0] ledsel,
input [3:0] ssdSel,
input SSDclk,
output [15:0] ledout,
output [3:0] Anode,
output [6:0] LED_out
);
wire [12:0] SDDout;
pipeline pi( clk,
SSDclk,
rst,
ledsel,
ssdSel,
SDDout,
ledout);
FSDD S(
SSDclk,
SDDout,
Anode,
LED_out
);
endmodule