diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-02 23:51:35 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-02 23:51:35 -0600 |
| commit | 64d84527cd71c3f96018df8831dcba38623d2e93 (patch) | |
| tree | 3791e5d1c06603fb111e076884b53acaaa12f6a4 /rtl/top | |
| parent | abe3a7da04a3703bd504b5ed2e13ecc79dff4bd0 (diff) | |
Use PLL output as CPU clock
Diffstat (limited to 'rtl/top')
| -rw-r--r-- | rtl/top/conspiracion.sv | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rtl/top/conspiracion.sv b/rtl/top/conspiracion.sv index 41b614f..8b5bdfa 100644 --- a/rtl/top/conspiracion.sv +++ b/rtl/top/conspiracion.sv @@ -39,13 +39,14 @@ module conspiracion arm810 core ( - .clk(clk_clk), + .clk(cpu_clk), .bus_addr(addr), .bus_data_rd(data_rd), .bus_data_wr(data_wr), .bus_ready(ready), .bus_write(write), - .bus_start(start) + .bus_start(start), + .* ); //TODO: pio_0_external_connection_export, |
