zig/test/cases/x86_64-linux/hello_world_with_updates.5.zig

23 lines
629 B
Zig

pub fn main() void {
print();
print();
}
fn print() void {
asm volatile ("syscall"
:
: [number] "{rax}" (1),
[arg1] "{rdi}" (1),
[arg2] "{rsi}" (@ptrToInt("What is up? This is a longer message that will force the data to be relocated in virtual address space.\n")),
[arg3] "{rdx}" (104),
: "rcx", "r11", "memory"
);
return;
}
// run
//
// What is up? This is a longer message that will force the data to be relocated in virtual address space.
// What is up? This is a longer message that will force the data to be relocated in virtual address space.
//