tape-kernel 1.0
a modular modern independent kernel
Loading...
Searching...
No Matches
cm.h
Go to the documentation of this file.
1#ifndef CM_H
2#define CM_H
3
4#include "../lib/types.h"
5
6#define cnb __cnb
7#define cob __cob
8#define scur __scur
9#define hcur __hcur
10
11void __cnb(int* x, int* y);
12void __cob(int x, int y);
13void __scur(void);
14void __hcur(void);
15
16#endif
void __scur(void)
scur shows the hardware text cursor
Definition cm.c:95
void __hcur(void)
hcur hides the hardware text cursor
Definition cm.c:116
void __cnb(int *x, int *y)
cnb syncs current cursor vals too 2 ptrs of vars for them
Definition cm.c:22
void __cob(int x, int y)
cob exports cursor positions
Definition cm.c:63