From: rs <> Date: Sat, 4 Oct 2025 05:55:14 +0000 (-0500) Subject: Add clarifying comment to assembler X-Git-Url: https://git.the-white-hart.net/?a=commitdiff_plain;h=ded418da5a5d99a892ce29402be99fb9de6d93ea;p=vhdl Add clarifying comment to assembler --- 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()