1
0
Fork 0
forked from AbleOS/ableos
ableos/sysdata/programs/fb_driver/src/main.hb
2024-06-14 11:48:53 -05:00

23 lines
306 B
Plaintext

buffer := 18446603339442421960;
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;
}