aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-04-07 17:59:25 -0700
committerChristian Cunningham <cc@localhost>2022-04-07 17:59:25 -0700
commit8138133bea13d02302c595620604c1d2b1626ee0 (patch)
tree59a28691f7f5fc41bf319482e9d0fc051907eb8a
parent8cfe70c9a99658a27ff206cc5b91527dbeb9a283 (diff)
Include drawing functions
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 865c003..87188e4 100644
--- a/README.md
+++ b/README.md
@@ -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.