mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
more
This commit is contained in:
@@ -531,4 +531,22 @@ opcode sequence(0xAD) name "LODSW" {
|
||||
/* how to show it */
|
||||
syntax ;
|
||||
}
|
||||
opcode sequence(0xAE) name "SCASB" {
|
||||
/* if DF = 1, dstidx -= 1; */
|
||||
/* if DF = 0, dstidx += 1; */
|
||||
input AL,memory reference byte farptr(ES,dstidx);
|
||||
modifies flags(CF,PF,AF,ZF,SF,OF);
|
||||
|
||||
/* how to show it */
|
||||
syntax ;
|
||||
}
|
||||
opcode sequence(0xAF) name "SCASW" {
|
||||
/* if DF = 1, dstidx -= wordsize; */
|
||||
/* if DF = 0, dstidx += wordsize; */
|
||||
input accum,memory reference word farptr(ES,dstidx);
|
||||
modifies flags(CF,PF,AF,ZF,SF,OF);
|
||||
|
||||
/* how to show it */
|
||||
syntax ;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user