FreeCalypso > hg > fc-small-hw
comparison duart28c/src/vsrc/board.v @ 46:d80978bd645e
duart28c: started with a copy from duart28
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Wed, 29 Jul 2020 07:08:28 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 45:2f8a4e3c48cb | 46:d80978bd645e |
|---|---|
| 1 module board (); | |
| 2 | |
| 3 wire GND, P_5V, P_3V3, P_2V8; | |
| 4 | |
| 5 wire [7:0] ADBUS, BDBUS; | |
| 6 wire [3:0] ACBUS, BCBUS; | |
| 7 | |
| 8 USB_block usb ( .GND(GND), | |
| 9 .P_5V(P_5V), | |
| 10 .VCCIOA(P_3V3), | |
| 11 .VCCIOB(P_3V3), | |
| 12 .ADBUS(ADBUS), | |
| 13 .ACBUS(ACBUS), | |
| 14 .SI_WUA(P_3V3), | |
| 15 .BDBUS(BDBUS), | |
| 16 .BCBUS(BCBUS), | |
| 17 .SI_WUB(P_3V3), | |
| 18 .PWREN() /* no connect */ | |
| 19 ); | |
| 20 | |
| 21 regulator_with_caps reg_3V3 (.GND(GND), .IN(P_5V), .OUT(P_3V3)); | |
| 22 regulator_with_caps reg_2V8 (.GND(GND), .IN(P_5V), .OUT(P_2V8)); | |
| 23 | |
| 24 application_block app ( .GND(GND), | |
| 25 .P_3V3(P_3V3), | |
| 26 .P_2V8(P_2V8), | |
| 27 .ADBUS(ADBUS), | |
| 28 .BDBUS(BDBUS) | |
| 29 ); | |
| 30 | |
| 31 /* auxiliary 5V output */ | |
| 32 | |
| 33 header_2pin aux_5V (.pin_1(P_5V), | |
| 34 .pin_2(GND) | |
| 35 ); | |
| 36 | |
| 37 endmodule |
