1
0
Fork 0
forked from AbleOS/ableos
ableos_time/sysdata/programs/tests/src/main.hb

30 lines
566 B
Plaintext
Raw Normal View History

2024-07-19 08:53:45 -05:00
stn := @use("../../../libraries/stn/src/lib.hb")
log := stn.log
string := stn.string
memory := stn.memory
buffer := stn.buffer
2024-07-06 09:24:23 -05:00
2024-07-19 05:47:59 -05:00
/*
service_search := fn(): void {
// a :=
return;
}
*/
2024-07-07 08:35:07 -05:00
main := fn(): int {
2024-07-19 08:53:45 -05:00
// Create a buffer
num := 2
buffer_id := buffer.create()
buffer.send_message(buffer_id)
memory_pages := memory.request_page(3)
buffer.receive_message(buffer_id, memory_pages, 4096 * 3)
log.info("abc\0")
memory.release_page(memory_pages, 3)
// todo: abstract this out
port_str := "\0\{70}\0"
a := @eca(u8, 3, 3, port_str, 2)
return 0
}