diff options
author | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-08 17:22:43 +0200 |
---|---|---|
committer | Wojciech Kosior <kwojtus@protonmail.com> | 2020-09-08 17:22:43 +0200 |
commit | 0a49a2c1496888f0014cf09feb425d9cc47a75ba (patch) | |
tree | 4b29913f71f041a2bf8a822b56099cef5745b3df | |
parent | 18b623d505607a41e34cffdc9e8210717e2e3638 (diff) | |
download | AGH-engineering-thesis-0a49a2c1496888f0014cf09feb425d9cc47a75ba.tar.gz AGH-engineering-thesis-0a49a2c1496888f0014cf09feb425d9cc47a75ba.zip |
remove old debugging code
-rw-r--r-- | tests/stack_machine_store/test.v | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/stack_machine_store/test.v b/tests/stack_machine_store/test.v index d7e6be6..08230a3 100644 --- a/tests/stack_machine_store/test.v +++ b/tests/stack_machine_store/test.v @@ -181,16 +181,8 @@ module stack_machine_test(); CLK <= ~CLK; - if (CLK) begin + if (CLK) RST <= 0; - `DBG(("step: %0d D_DAT_I: %x D_STB_O: %d D_CYC_O: %d D_STALL_I: %d r0: %x r1: %x lsu: %b stu: %b dcc: %d", - stack_machine.step, MD_DAT_I, MD_STB_O, MD_CYC_O, MD_STALL_I, - stack_machine.r0, stack_machine.r1, - stack_machine.load_store_uncompleted, - stack_machine.stack_transfer_uncompleted, - stack_machine.data_command_completes, - )); - end if (M_finished) begin $readmemh("words_to_verify.mem", words_to_verify, |