-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathkypdTest.v
More file actions
21 lines (19 loc) · 724 Bytes
/
kypdTest.v
File metadata and controls
21 lines (19 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ------------------------------------------------ *
* Title : Pmod KYPD Test *
* Project : Pmod KYPD *
* ------------------------------------------------ *
* File : kypdTest.v *
* Author : Yigit Suoglu *
* Last Edit : 03/02/2021 *
* ------------------------------------------------ *
* Description : Test for Pmod KYPD *
* ------------------------------------------------ */
module kypd_test(
input clk,
input rst,
output [15:0] led,
input [3:0] row,
output [3:0] col,
output [3:0] num_val);
kypd uur(clk,rst,row,col,led,num_val);
endmodule