Skip to content

Commit

Permalink
Fix pinout
Browse files Browse the repository at this point in the history
  • Loading branch information
mole99 committed Oct 21, 2023
1 parent 2ae106d commit a86f686
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tt_um_top_mole99.sv
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ module tt_um_top_mole99 (

top top_inst (
.clk (clk),
.reset_n (rst_n && ena), // TODO
.reset_n (rst_n && ena),

// SPI signals
.spi_sclk (ui_in[0]),
.spi_mosi (ui_in[1]),
.spi_miso (uio_out[2]),
.spi_cs (ui_in[2]),
.spi_sclk (spi_sclk),
.spi_mosi (spi_mosi),
.spi_miso (spi_miso),
.spi_cs (spi_cs),

// SVGA signals
.rrggbb (rrggbb),
Expand Down

0 comments on commit a86f686

Please sign in to comment.