mirror of
https://github.com/KarolS/millfork.git
synced 2025-04-04 06:29:48 +00:00
8080: Fix word negation
This commit is contained in:
parent
f39810793b
commit
f4a3601d6e
@ -279,7 +279,21 @@ object ZBuiltIns {
|
||||
ctx.env.eval(expr) match {
|
||||
case None =>
|
||||
if (result.isEmpty) {
|
||||
???
|
||||
if (ctx.options.flag(CompilationFlag.EmitZ80Opcodes)) {
|
||||
result ++= Z80ExpressionCompiler.compileToBC(ctx, expr)
|
||||
result += ZLine.ldImm16(ZRegister.HL, 0)
|
||||
result += ZLine.register(OR, ZRegister.A)
|
||||
result += ZLine.registers(SBC_16, ZRegister.HL, ZRegister.BC)
|
||||
} else {
|
||||
result ++= Z80ExpressionCompiler.compileToHL(ctx, expr)
|
||||
result += ZLine.register(DEC_16, ZRegister.HL)
|
||||
result += ZLine.ld8(ZRegister.A, ZRegister.H)
|
||||
result += ZLine.implied(CPL)
|
||||
result += ZLine.ld8(ZRegister.H, ZRegister.A)
|
||||
result += ZLine.ld8(ZRegister.A, ZRegister.L)
|
||||
result += ZLine.implied(CPL)
|
||||
result += ZLine.ld8(ZRegister.L, ZRegister.A)
|
||||
}
|
||||
} else {
|
||||
if (ctx.options.flag(CompilationFlag.EmitZ80Opcodes)) {
|
||||
// TODO: optimize
|
||||
|
@ -268,6 +268,20 @@ class WordMathSuite extends FunSuite with Matchers with AppendedClues {
|
||||
}
|
||||
}
|
||||
|
||||
test("Word addition 6") {
|
||||
EmuCrossPlatformBenchmarkRun(Cpu.Sixteen, Cpu.Mos, Cpu.Z80, Cpu.Intel8080, Cpu.Intel8085, Cpu.Sharp, Cpu.Intel8086, Cpu.Motorola6809)("""
|
||||
| byte output @$c000
|
||||
| void main () {
|
||||
| signed16 p
|
||||
| p = f()
|
||||
| output = lo(-p)
|
||||
| }
|
||||
| noinline signed16 f() = 6
|
||||
""".stripMargin) { m =>
|
||||
m.readByte(0xc000) should equal((-6) & 0xff)
|
||||
}
|
||||
}
|
||||
|
||||
test("Word bit ops 2") {
|
||||
EmuCrossPlatformBenchmarkRun(Cpu.Sixteen, Cpu.Mos, Cpu.Z80, Cpu.Intel8080, Cpu.Sharp, Cpu.Intel8086, Cpu.Motorola6809)("""
|
||||
| word output @$c000
|
||||
|
Loading…
x
Reference in New Issue
Block a user