kernel

Macro asm

Source
macro_rules! asm {
    ($($asm:expr),* ; $($rest:tt)*) => { ... };
}
Expand description

Wrapper around asm! configured for use in the kernel.

Uses a semicolon to avoid parsing ambiguities, even though this does not match native asm! syntax.