Tom Hughes 56a515fc49 Treat INT with an operand other than 0x80 as an undefined instruction.
CCMAIL: 76839-done@bugs.kde.org


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2291
2004-03-06 12:53:24 +00:00

9 lines
91 B
C

#include <stdlib.h>
int main(int argc, char **argv)
{
asm ("int $129");
exit(0);
}