This commit is contained in:
Jonathan Campbell
2020-07-21 01:10:11 -07:00
parent 5cf04f7e20
commit 227492ec90

View File

@@ -237,6 +237,14 @@ common opcode "RETF" param(iw) {
input iw;
}
common opcode "IRET" param() {
modifies stackp; /* stackp += (word size + 16 bits + iw + flags) */
modifies CS,insp,flags;
output CS,insp,flags;
input order(stackdataw,stackdata16,stackdataw);
}
common opcode "INT" param(iw) {
modifies stackp; /* stackp += (word size + 16 bits + iw) */
modifies CS,insp;
@@ -606,3 +614,6 @@ opcode sequence(0xCE) name "INTO" {
input flags;
common opcode "INT" param(4);
}
opcode sequence(0xCF) name "IRET" {
common opcode "IRET" param();
}