-
Notifications
You must be signed in to change notification settings - Fork 0
/
LED_DEV.v
36 lines (32 loc) · 878 Bytes
/
LED_DEV.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
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
////////////////////////////////////////////////////////////////////////////////
// ____ ____
// / /\/ /
// /___/ \ / Vendor: Xilinx
// \ \ \/ Version : 14.7
// \ \ Application :
// / / Filename : xil_5396_28
// /___/ /\ Timestamp : 11/11/2014 18:31:19
// \ \ / \
// \___\/\___\
//
//Command:
//Design Name:
//
`timescale 1ns / 1ps
module LED_DEV(clk,
Data_in,
EN,
rst,
LED,
Other_out);
input clk;
input [31:0] Data_in;
input EN;
input rst;
output [7:0] LED;
output [31:8] Other_out;
assign LED[7:0] = Data_in[7:0];
assign Other_out = Data_in[31:9];
endmodule