mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-07 16:29:59 +00:00
Tiny fix
This commit is contained in:
parent
fcf4af6c55
commit
4f46b21867
@ -391,7 +391,7 @@ object AssemblyLine {
|
||||
variable match {
|
||||
case v@MemoryVariable(_, _, VariableAllocationMethod.Zeropage) =>
|
||||
List(AssemblyLine.zeropage(opcode, v.toAddress + offset))
|
||||
case v@RelativeVariable(_, _, _, true) =>
|
||||
case v@RelativeVariable(_, _, _, true, None) =>
|
||||
List(AssemblyLine.zeropage(opcode, v.toAddress + offset))
|
||||
case v: VariableInMemory => List(AssemblyLine.absolute(opcode, v.toAddress + offset))
|
||||
case v: StackVariable =>
|
||||
|
Loading…
Reference in New Issue
Block a user