From 6642d3853d01321ace081c9d6d9b8cdc26a6152b Mon Sep 17 00:00:00 2001 From: Erick Date: Wed, 23 Mar 2022 13:05:58 +0100 Subject: [PATCH] minor comment changes --- .gitignore | 3 ++- cpu/alu/alu.sv | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5389463..b5b94e1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ .out # Folders -gtkwave \ No newline at end of file +gtkwave +testbench \ No newline at end of file diff --git a/cpu/alu/alu.sv b/cpu/alu/alu.sv index 08ec301..211b669 100644 --- a/cpu/alu/alu.sv +++ b/cpu/alu/alu.sv @@ -47,7 +47,7 @@ always @(*) begin alu_out = tmpOut; end - //TODO: improve this part using increment/decrement logic + //TODO: improve following using increment/decrement logic if (alu_out < 0) flag = 0; // negative flag else if (alu_out = 0)