From d107f7e40f02a7374b8685ba310500a6c38d43b1 Mon Sep 17 00:00:00 2001 From: Flavian Kaufmann Date: Tue, 14 May 2024 10:38:47 +0200 Subject: bug fixes --- src/result_mux.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/result_mux.v') diff --git a/src/result_mux.v b/src/result_mux.v index 528913d..9aab115 100644 --- a/src/result_mux.v +++ b/src/result_mux.v @@ -12,10 +12,10 @@ module result_mux ( always @(*) begin case (result_src) - RESULT_SRC_ALU_RESULT_BUF: result <= src_alu_result_buf; - RESULT_SRC_DATA_BUF: result <= src_data_buf; - RESULT_SRC_ALU_RESULT: result <= src_alu_result; - default: result <= 32'b0; + RESULT_SRC_ALU_RESULT_BUF: result = src_alu_result_buf; + RESULT_SRC_DATA_BUF: result = src_data_buf; + RESULT_SRC_ALU_RESULT: result = src_alu_result; + default: result = 32'b0; endcase end -- cgit v1.2.3