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