1
0
Fork 0
forked from AbleOS/ableos
ableos/sysdata/programs/fb_driver/src/main.hb
2024-07-06 09:24:23 -05:00

23 lines
327 B
Plaintext

buffer := @as(^u32, @bitcast(18446603339442422060));
send_msg := fn(): int {
msg := 10;
@eca(i32, 3, 1, 2, 1);
return 0;
}
modify := fn(a: ^int): void {
*a = 4294967295;
return;
}
main := fn(): int {
@eca(i32, 1, 1, 1);
loop{
@eca(i32, 1, 1, 1);
modify(&buffer);
}
return 0;
}