shalan | 0d14e6e | 2020-08-31 16:50:48 +0200 | [diff] [blame^] | 1 | module mprj_io( |
| 2 | inout vdd, |
| 3 | inout vdd1v8, |
| 4 | inout vss, |
| 5 | input vddio_q, |
| 6 | input vssio_q, |
| 7 | input analog_a, |
| 8 | input analog_b, |
| 9 | input [`MPRJ_IO_PADS-1:0] io, |
| 10 | input [`MPRJ_IO_PADS-1:0] io_out, |
| 11 | input [`MPRJ_IO_PADS-1:0] oeb_n, |
| 12 | input [`MPRJ_IO_PADS-1:0] hldh_n, |
| 13 | input [`MPRJ_IO_PADS-1:0] enh, |
| 14 | input [`MPRJ_IO_PADS-1:0] inp_dis, |
| 15 | input [`MPRJ_IO_PADS-1:0] ib_mode_sel, |
| 16 | input [`MPRJ_IO_PADS-1:0] analog_en, |
| 17 | input [`MPRJ_IO_PADS-1:0] analog_sel, |
| 18 | input [`MPRJ_IO_PADS-1:0] analog_pol, |
| 19 | input [`MPRJ_IO_PADS*3-1:0] dm, |
| 20 | output [`MPRJ_IO_PADS-1:0] io_in |
| 21 | ); |
| 22 | |
| 23 | `MPRJ_IO_PAD_V(io, io_in, io_out, `MPRJ_IO_PADS, |
| 24 | oeb_n, hldh_n, enh, inp_dis, ib_mode_sel, |
| 25 | analog_en, analog_sel, analog_pol, dm); |
| 26 | |
| 27 | endmodule |