1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-12 22:29:33 +00:00

Tiny formatting fix

This commit is contained in:
Karol Stasiak 2020-12-01 03:19:47 +01:00
parent cba145d674
commit 8dfad735ab

View File

@ -108,7 +108,7 @@ abstract class AbstractAssembler[T <: AbstractCode](private val program: Program
case AssertByte(inner) =>
val value = deepConstResolve(inner)
if (value.toByte == value) value else {
log.error("Invalid relative jump: " + c + " calculated offset: " + value, position)
log.error("Invalid relative jump: " + inner + " calculated offset: " + value, position)
-2 // spin
}
case MemoryAddressConstant(th) =>