From ded418da5a5d99a892ce29402be99fb9de6d93ea Mon Sep 17 00:00:00 2001 From: rs <> Date: Sat, 4 Oct 2025 00:55:14 -0500 Subject: [PATCH] Add clarifying comment to assembler --- projects/cpu_0/asm/as.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/cpu_0/asm/as.py b/projects/cpu_0/asm/as.py index 56b9d5f..88c4a1e 100755 --- a/projects/cpu_0/asm/as.py +++ b/projects/cpu_0/asm/as.py @@ -133,7 +133,7 @@ def main() -> int: print(f'Assembling "{source_filename}"') source = f.read() s = assembler.chomp(source_filename, source) - success = success and s + success = success and s # Avoid short-circuiting if not success: return 1 emitted = assembler.emit() -- 2.43.0