]>
Commit | Line | Data |
---|---|---|
782690d0 MG |
1 | //-------------------------------------------------------------------\r |
2 | // \r | |
3 | // PLAYSTATION CONTROLLER-FPGA ARCADE GAME INTERFACE TOP \r | |
4 | // \r | |
5 | // Version : 2.02 \r | |
6 | // \r | |
7 | // Copyright(c) 2003 - 2004 Katsumi Degawa , All rights reserved \r | |
8 | // \r | |
9 | // Important ! \r | |
10 | // \r | |
11 | // This program is freeware for non-commercial use. \r | |
12 | // An author does no guarantee about this program. \r | |
13 | // You can use this under your own risk. \r | |
14 | //\r | |
15 | // Xilinx Net I/F \r | |
16 | //-------------------------------------------------------------------\r | |
17 | \r | |
18 | module fpga_arcade_if(\r | |
19 | \r | |
20 | CLK_18M432,\r | |
21 | I_RSTn,\r | |
22 | psCLK,\r | |
23 | psSEL,\r | |
24 | psTXD,\r | |
25 | psRXD,\r | |
26 | ps_PSW,\r | |
27 | I_VIB_SW \r | |
28 | \r | |
29 | );\r | |
30 | \r | |
31 | input CLK_18M432,I_RSTn;\r | |
32 | input I_VIB_SW;\r | |
33 | input psRXD;\r | |
34 | output psCLK,psSEL,psTXD;\r | |
35 | output [8:0]ps_PSW;\r | |
36 | \r | |
37 | endmodule |