-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAnti_jitter_IO.v
39 lines (36 loc) · 1006 Bytes
/
SAnti_jitter_IO.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
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 21:03:38 04/29/2014
// Design Name:
// Module Name: Anti_jitter
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
//synthesis attribute box_type <SAnti_jitter> "black_box"
module SAnti_jitter(input wire clk,
input wire RSTN,
input wire readn,
input wire [3:0]Key_y,
output reg[4:0] Key_x,
input wire[15:0]SW,
output reg[4:0] Key_out,
output reg Key_ready,
output reg[3:0] pulse_out,
output reg[3:0] BTN_OK,
output reg[15:0]SW_OK,
output reg CR,
output reg rst
);
endmodule