Rust adds support for the x86-interrupt calling convention

Overview
This calling convention can be used for definining interrupt handlers on 32-bit and 64-bit x86 targets. The compiler then uses iret instead of ret for returning and ensures that all regist… Read more

Similar