From 20fd019f0cf4c9110f44e46ff7820dd37598e164 Mon Sep 17 00:00:00 2001 From: uvok Date: Thu, 1 Jan 2026 15:44:40 +0100 Subject: Add arithmetic unit, disable gtkwave --- nandgame/arith_unit.sv | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 nandgame/arith_unit.sv (limited to 'nandgame/arith_unit.sv') diff --git a/nandgame/arith_unit.sv b/nandgame/arith_unit.sv new file mode 100644 index 0000000..ebbaaf8 --- /dev/null +++ b/nandgame/arith_unit.sv @@ -0,0 +1,27 @@ +// nandgame logic unit + +`timescale 1us/1us + +`include "nandgame_types.v" + +module arith_unit #( + parameter DATA_WIDTH = 16 +) ( + input [(DATA_WIDTH-1):0] X, + input [(DATA_WIDTH-1):0] Y, + input ArithCode operation, + + output logic [(DATA_WIDTH-1):0] RES +); + +always_comb begin + case (operation) + ARITH_PLUS: RES = X + Y; + ARITH_MINUS: RES = X - Y; + ARITH_INC: RES = X + 1; + ARITH_DEC: RES = X - 1; + default: RES = 0; + endcase +end + +endmodule -- cgit v1.2.3