From e2b7385b03a6dc9c8c39dde5c049cd74b0768bd1 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 12 Nov 2023 16:15:40 +0200 Subject: Remove options, improve functions --- src/asm_pass3.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/asm_pass3.py') diff --git a/src/asm_pass3.py b/src/asm_pass3.py index 7fcb44d..9c8cb34 100644 --- a/src/asm_pass3.py +++ b/src/asm_pass3.py @@ -14,7 +14,6 @@ class Result3Line: @dataclass class Result3: lines: list[Result3Line] - options: Options operations: OpExpansionDict symbols: dict[str, int] @@ -57,7 +56,6 @@ def pass_3(result2: Result2) -> Result3: raise Exception(f"Overlapping segments: address 0x{result_line.address:>04x} has conflicting definitions:\n{formatted}") return Result3( operations=result2.operations, - options=result2.options, lines=result_lines, symbols=symbols, ) -- cgit v1.3