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

13 lines
331 B
Plaintext
Raw Normal View History

.{dt} := @use("../../../libraries/stn/src/lib.hb")
2024-09-13 18:11:23 -05:00
main := fn(): int {
dt.get(int, "framebuffer/fb0/width\0")
dt.get(int, "cpu/cpu0/architecture\0")
2024-09-13 20:17:47 -05:00
// Checking if the first detected serial port is memory mapped or port mapped
// 0 -> memory mapped
// 1 -> port mapped
dt.get(int, "serial_ports/sp0/mapping\0")
2024-09-13 18:11:23 -05:00
return 0
}