From 52e189c2262d45a07e7b8e61bc167cb64f6e7192 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Fri, 10 Dec 2021 13:46:57 +0100 Subject: [PATCH] fixed missing newline at the end of the file --- riscemu/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscemu/helpers.py b/riscemu/helpers.py index 7722d9f..8becedd 100644 --- a/riscemu/helpers.py +++ b/riscemu/helpers.py @@ -104,4 +104,4 @@ def bind_twos_complement(val): return val + 4294967296 elif val > 2147483647: return val - 4294967296 - return val \ No newline at end of file + return val