diff options
author | Benji Dial <benji@benjidial.net> | 2024-01-15 15:44:20 -0500 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-01-15 15:44:20 -0500 |
commit | c9a1266d219a83882735a3a8304f3824e0219cdb (patch) | |
tree | fea71a0b5b0de8f3a8962dc6ed417273f231e2a9 /include/mercury/syscall.hpp | |
parent | 7c6a18d77a81f232ad2e1d3a311bb21ea8f1f5b4 (diff) | |
download | hilbert-os-c9a1266d219a83882735a3a8304f3824e0219cdb.tar.gz |
redo application paging and system calls, rename mercury to hilbert
Diffstat (limited to 'include/mercury/syscall.hpp')
-rw-r--r-- | include/mercury/syscall.hpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/include/mercury/syscall.hpp b/include/mercury/syscall.hpp deleted file mode 100644 index f434d91..0000000 --- a/include/mercury/syscall.hpp +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef MERCURY_SYSCALL_HPP -#define MERCURY_SYSCALL_HPP - -#include <cstdint> - -namespace mercury::syscall { - - typedef uint32_t encoded_color; - - struct [[gnu::packed]] color { - uint8_t r; - uint8_t g; - uint8_t b; - }; - - extern "C" encoded_color encode_color(color c); - - extern "C" void get_framebuffer(encoded_color *&framebuffer_out, - uint32_t &width_out, uint32_t &height_out, uint32_t &pitch_out - ); - - extern "C" void draw_framebuffer(); - -} - -#endif |