10 lines
129 B
Rust
10 lines
129 B
Rust
|
#![feature(asm)]
|
||
|
|
||
|
fn main() {
|
||
|
asm!("mov $$0x200, %eax"
|
||
|
:
|
||
|
:
|
||
|
: "{eax}" //~ ERROR E0664
|
||
|
);
|
||
|
}
|