This commit is contained in:
Jonathan Campbell
2020-06-07 13:43:22 -07:00
parent 07bc98195d
commit 29ada9d759

View File

@@ -454,7 +454,7 @@ opcode sequence(0xA3 imma) name "MOV" { common opcode "MOV" param(memory referen
opcode sequence(0xA4) name "MOVSB" {
/* if DF = 1, srcidx -= 1, dstidx -= 1; */
/* if DF = 0, srcidx += 1, dstidx += 1; */
input memory reference byte srcidx,DF;
input memory reference byte srcidx, DF;
output memory reference byte farptr(ES,dstidx);
modifies srcidx,dstidx;
@@ -464,7 +464,7 @@ opcode sequence(0xA4) name "MOVSB" {
opcode sequence(0xA5) name "MOVSW" {
/* if DF = 1, srcidx -= wordsize, dstidx -= wordsize; */
/* if DF = 0, srcidx += wordsize, dstidx += wordsize; */
input memory reference word srcidx,DF;
input memory reference word srcidx, DF;
output memory reference word farptr(ES,dstidx);
modifies srcidx,dstidx;