diff options
author | Christian Cunningham <cc@localhost> | 2022-04-07 17:59:25 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-04-07 17:59:25 -0700 |
commit | 8138133bea13d02302c595620604c1d2b1626ee0 (patch) | |
tree | 59a28691f7f5fc41bf319482e9d0fc051907eb8a | |
parent | 8cfe70c9a99658a27ff206cc5b91527dbeb9a283 (diff) |
Include drawing functions
-rw-r--r-- | README.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -81,6 +81,11 @@ Thus, it is recommended to use the Mutex objects instead of locks. ### Other Functions - Get time since boot: `sys0_64(SYS_TIME, address of uint64 to store the time)` include `<cpu.h>` + - Draw to the screen (include `<graphics/lfb.h>`) + - Strings: `draw_string(x, y, string)` + - 32-bit words: `draw_hex32(x, y, value)` + - Pixel: `draw_cpixel(x, y, RGB color)` + - Box: `draw_cbox(x, y, dx, dy, RGB color)` ### Default RTOS Application Currently, if you build Jobbed without modifying anything, it will generate the RTOS core testing suite. |