|
tape-kernel 1.0
a modular modern independent kernel
|
#include "../lib/types.h"

Go to the source code of this file.
Macros | |
| #define | cnb __cnb |
| #define | cob __cob |
| #define | scur __scur |
| #define | hcur __hcur |
Functions | |
| void | __cnb (int *x, int *y) |
| cnb syncs current cursor vals too 2 ptrs of vars for them | |
| void | __cob (int x, int y) |
| cob exports cursor positions | |
| void | __scur (void) |
| scur shows the hardware text cursor | |
| void | __hcur (void) |
| hcur hides the hardware text cursor | |
| #define cnb __cnb |
Definition at line 6 of file cm.h.
Referenced by ___init(), __rdln(), __shell(), cmd_alloc(), cmd_readfile(), and cmd_writefile().
| #define cob __cob |
Definition at line 7 of file cm.h.
Referenced by ___init(), __editor(), __rdln(), __shell(), cmd_alloc(), cmd_readfile(), cmd_writefile(), editor_display(), and show_help().
| void __cnb | ( | int * | x, |
| int * | y ) |
| void __cob | ( | int | x, |
| int | y ) |
cob exports cursor positions
cob is a function that sets the cursor to a x and y position
use cob with
the rest of the code will still have the old cursor values and not be syncd, instead do
this is good because the rest of your code will have up to date cursor positions
| void __hcur | ( | void | ) |