diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-12 21:47:54 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-13 05:54:44 -0600 |
| commit | 6cb000adf57d7af2ec4aac8fd93d12f09cc63556 (patch) | |
| tree | 39610a5bd40d8fbb5b0ffd54252113f859dc3c71 /rtl/core/arm810.sv | |
| parent | 6281f45ac01e113f2b59fe6f49baad0cc8ab16fc (diff) | |
Implement CPU halt
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/arm810.sv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv index 9b36a41..2600e51 100644 --- a/rtl/core/arm810.sv +++ b/rtl/core/arm810.sv @@ -5,13 +5,15 @@ module arm810 input logic clk, rst_n, irq, + halt, output ptr bus_addr, output logic bus_start, bus_write, input logic bus_ready, input word bus_data_rd, - output word bus_data_wr + output word bus_data_wr, + output logic halted ); ptr fetch_insn_pc, fetch_head, insn_addr; |
