// vim: ts=4 sw=4 noexpandtab /* * FPGA test project * * Copyright (c) 2019 Michael Buesch * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ module top_module( input CLK, input SPI_SS, input SPI_SCK, input SPI_IO0, input SPI_IO1, input SPI_IO2, input SPI_IO3, input USBP, input USBN, output USBPU, output LED, output PIN_1, input PIN_2, input PIN_3, input PIN_4, input PIN_5, input PIN_6, input PIN_7, input PIN_8, input PIN_9, input PIN_10, input PIN_11, output PIN_12, input PIN_13, input PIN_14, output PIN_15, output PIN_16, output PIN_17, input PIN_18, input PIN_19, input PIN_20, input PIN_21, output PIN_22, output PIN_23, input PIN_24, input PIN_25, input PIN_26, input PIN_27, input PIN_28, input PIN_29, input PIN_30, input PIN_31, ); assign USBPU = 0; // Disable USB endmodule