commit | 68432cc4ce09a195909f096862f7a03cd8dc23bf | [log] [tgz] |
---|---|---|
author | Philipp Gühring <pg@futureware.at> | Tue Jun 29 09:21:12 2021 +0200 |
committer | Philipp Gühring <pg@futureware.at> | Tue Jun 29 09:21:12 2021 +0200 |
tree | 92d76b8e5784a51d6686f3aa0484584c1cc99429 | |
parent | 76c4f42d5387b8cfc9d42ad582d6da79be1ddad8 [diff] |
Ported to MPW2
diff --git a/scripts/generator.pl b/scripts/generator.pl index 394d283..98950f4 100755 --- a/scripts/generator.pl +++ b/scripts/generator.pl
@@ -46,9 +46,16 @@ // IOs input [`MPRJ_IO_PADS-1:0] io_in, output [`MPRJ_IO_PADS-1:0] io_out, - output [`MPRJ_IO_PADS-1:0] io_oeb + output [`MPRJ_IO_PADS-1:0] io_oeb, + + // IRQ + output [2:0] irq, + ); + // IRQ + assign irq = 3'b000; // Unused + EOF ; @@ -125,3 +132,4 @@ } print $conf; print "endmodule\n"; +print "`default_nettype wire\n";