mirror of
https://github.com/irmen/prog8.git
synced 2025-01-12 04:30:03 +00:00
todo
This commit is contained in:
parent
7245aece4f
commit
e98bbc1c52
@ -1,6 +1,8 @@
|
||||
TODO
|
||||
====
|
||||
|
||||
- IR/VM: fix the vm/textelite game, it now prints garbage! (caused by the SGE opcode implementation change to set -1 instead of 1)
|
||||
|
||||
- IR: instructions that do type conversion (SZ etc, CONCAT, SGN) should put the result in a DIFFERENT register.
|
||||
|
||||
...
|
||||
|
@ -881,7 +881,6 @@ class VirtualMachine(irProgram: IRProgram) {
|
||||
val value = if(left>=right) -1 else 0
|
||||
setResultReg(i.reg1!!, value, i.type!!)
|
||||
nextPc()
|
||||
|
||||
}
|
||||
|
||||
private fun InsSGES(i: IRInstruction) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user