mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 09:13:11 +00:00
13 lines
212 B
Zig
13 lines
212 B
Zig
pub fn main() void {
|
|
var bruh: u32 = 1;
|
|
asm (""
|
|
:
|
|
: [bruh] "{rax}" (4),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :3:5: error: assembly expression with no output must be marked volatile
|