//------------------------------------------------------------------- // // PLAYSTATION CONTROLLER-FPGA ARCADE GAME INTERFACE TOP // // Version : 2.02 // // Copyright(c) 2003 - 2004 Katsumi Degawa , All rights reserved // // Important ! // // This program is freeware for non-commercial use. // An author does no guarantee about this program. // You can use this under your own risk. // // Xilinx Net I/F //------------------------------------------------------------------- module fpga_arcade_if( CLK_18M432, I_RSTn, psCLK, psSEL, psTXD, psRXD, ps_PSW, I_VIB_SW ); input CLK_18M432,I_RSTn; input I_VIB_SW; input psRXD; output psCLK,psSEL,psTXD; output [8:0]ps_PSW; endmodule