diff options
author | Astatin <[email protected]> | 2025-06-10 13:22:11 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-06-10 13:22:11 +0200 |
commit | a7d6e62878245810323787eeb5458e418371b89f (patch) | |
tree | 003d8ce40e1580ec63360e271fd5e9427984ab2b /main.go | |
parent | 92ebacf4087babc3766b736aefa99fcaf7b89856 (diff) |
Add support for cross bank labels
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,7 +209,7 @@ func secondPass( ) } } else { - nextInstruction, err := Instructions.Parse(&state.Labels, &state.Defs, state.IsMacro, false, uint16(uint(len(result))+offset), lastAbsoluteLabel, line) + nextInstruction, err := Instructions.Parse(&state.Labels, &state.Defs, state.IsMacro, false, uint32(uint(len(result))+offset), lastAbsoluteLabel, line) if err != nil { return nil, fmt.Errorf( "File %s, line %d (2nd pass): %w", |