| // update this to the name of your module |
| module wrapped_vga_clock( |
| inout vdd, // User area 1 1.8V supply |
| inout vss, // User area 1 digital ground |
| // interface as user_proj_example.v |
| // Logic Analyzer Signals |
| // only provide first 32 bits to reduce wiring congestion |
| input wire [`MPRJ_IO_PADS-1:0] io_in, |
| output wire [`MPRJ_IO_PADS-1:0] io_out, |
| output wire [`MPRJ_IO_PADS-1:0] io_oeb, |
| // permanently set oeb so that outputs are always enabled: 0 is output, 1 is high-impedance |
| assign io_oeb = {`MPRJ_IO_PADS{1'b0}}; |
| wire reset_n = ! wb_rst_i; |