From db21c82dc68a087bee79f698e8221fad2364b853 Mon Sep 17 00:00:00 2001 From: martin <marho227@student.liu.se> Date: Fri, 4 Aug 2023 13:48:36 +0200 Subject: [PATCH] removed debugg print --- src/simudator/processor/mia/alu.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/simudator/processor/mia/alu.py b/src/simudator/processor/mia/alu.py index 4c99aaf..15e0900 100644 --- a/src/simudator/processor/mia/alu.py +++ b/src/simudator/processor/mia/alu.py @@ -323,7 +323,6 @@ class ALU(Module): # Convert shifted to int value = self.bin_to_int(new_binary_number) - print(carry) self.update_flags(None, None, new_binary_number, carry) return value -- GitLab