What does int 0x81 do exactly?
Is int 0x81 in x86 assembly code assigning an integer to a register space, or just invoking an in开发者_StackOverflow社区terrupt?
INT n
where n is an integer literal is a software interrupt. The meaning of that interrupt number (and if it's even allowed) is operating system dependent.
精彩评论