The corresponding Intel intsructions are iret
and int
, respectively. That said, interrupt handling is highly CPU- and platform-specific; translating commands one-to-one most likely won't yield a working program. If you're developing an application, you shouldn't be messing with interrupts (even int 80h - there are better ways to perform a syscall). If you're developing a driver or an OS kernel, you should learn assembly systematically, rather than translating line by line.
The int
command might be theoretically present in application code - it invokes an interrupt, that's an exotic but legitimate way of interacting with the OS. The iret
command, on the other hand, should only be used in an interrupt handler. It's never used outside of kernelspace.