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