diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-09-26 02:03:05 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-09-26 02:03:05 -0600 |
| commit | a2f0c253384ec747735b102ccedfae5c96626fbc (patch) | |
| tree | 5462240fc69264ea2fccfe5cfd398bb2b969ca95 /tb/platform.sv | |
| parent | 39ec176b839c7c2ae51fdba8d49d0110b91e953e (diff) | |
rtl/mp: fix design
Diffstat (limited to 'tb/platform.sv')
| -rw-r--r-- | tb/platform.sv | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tb/platform.sv b/tb/platform.sv index a4db086..5661150 100644 --- a/tb/platform.sv +++ b/tb/platform.sv @@ -263,4 +263,33 @@ module platform .out_token_valid(token_valid_3) ); + mp_ctrl mp + ( + .clk(), + .rst_n(), + + .avl_read(0), + .avl_write(0), + .avl_writedata(), + .avl_readdata(), + + .cpu_halted_0(0), + .cpu_halted_1(0), + .cpu_halted_2(0), + .cpu_halted_3(0), + .breakpoint_0(0), + .breakpoint_1(0), + .breakpoint_2(0), + .breakpoint_3(0), + + .halt_0(), + .halt_1(), + .halt_2(), + .halt_3(), + .step_0(), + .step_1(), + .step_2(), + .step_3() + ); + endmodule |
