/* ARM Stripe Verilog Module This module just provides an interface between the Embedded Stripe and the pins it uses. It does nothing except make the Quartus compiler happy. */ module main( CLK,CLK_REF, NRESET,NPOR, UARTB_RXD, UARTB_DSR_N, UARTB_CTS_N, UARTB_RI_N, UARTB_DCD_N, UARTB_TXD, UARTB_RTS_N, UARTB_DTR_N); // Other inputs and outputs related to the ARM Stripe input UARTB_RXD,UARTB_DSR_N,UARTB_CTS_N; inout UARTB_RI_N,UARTB_DCD_N; output UARTB_TXD,UARTB_RTS_N,UARTB_DTR_N; input CLK,CLK_REF; inout NRESET; input NPOR; // The ARM Stripe module itself arm(CLK_REF, NPOR, NRESET, UARTB_RXD, UARTB_DSR_N, UARTB_CTS_N, UARTB_RI_N, UARTB_DCD_N, UARTB_TXD, UARTB_RTS_N, UARTB_DTR_N); endmodule