diff options
| author | uvok | 2026-01-02 19:36:30 +0100 |
|---|---|---|
| committer | uvok | 2026-01-02 19:36:30 +0100 |
| commit | 6c1db8cded8b8bb1c4d31a840f7dd9dddb8bbf7d (patch) | |
| tree | e8bb18228b55baf35dd540cd6e607857e9ecbaef /nandgame/instruction_decode_tb.v | |
| parent | e49b8a787f72daa3d08e278a9c32663c16531827 (diff) | |
Rename variables to be more clear, document
Diffstat (limited to 'nandgame/instruction_decode_tb.v')
| -rw-r--r-- | nandgame/instruction_decode_tb.v | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/nandgame/instruction_decode_tb.v b/nandgame/instruction_decode_tb.v deleted file mode 100644 index e68d63b..0000000 --- a/nandgame/instruction_decode_tb.v +++ /dev/null @@ -1,37 +0,0 @@ -`timescale 1us/1us - -module instruction_decode_tb; - -logic [15:0] INS, RES; -logic dst_A, dst_D, dst_pA; -logic [15:0] data_A, data_D, data_pA; -logic do_jump; - -instruction_decode uut ( - .instruction(INS), - .dst_a(dst_A), - .dst_d(dst_D), - .dst_pa(dst_pA), - .A_i(data_A), - .D_i(data_D), - .pA_i(data_pA), - .RES(RES), - .do_jump(do_jump) -); - -string filename; -initial begin -`ifdef DUMP_FILE_NAME - filename=`DUMP_FILE_NAME; -`else - filename="instruction_decode.lxt2"; -`endif - $dumpfile(filename); $dumpvars(); -end - -initial begin - #10 - $finish(); -end - -endmodule |
