]> git.the-white-hart.net Git - vhdl/commitdiff
Add clarifying comment to assembler
authorrs <>
Sat, 4 Oct 2025 05:55:14 +0000 (00:55 -0500)
committerrs <>
Sat, 4 Oct 2025 05:55:14 +0000 (00:55 -0500)
projects/cpu_0/asm/as.py

index 56b9d5fb5a349251c9d51e6b82785844c7551b15..88c4a1e8764e7ac452f18f21c85c869ec0d10c17 100755 (executable)
@@ -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()