mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
more
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user