Add cursor-off

This commit is contained in:
K. Lange 2018-03-06 23:12:32 +09:00 committed by Kevin Lange
parent 7c6cd9c531
commit 54c48446e7
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
APPS=init hello sh ls terminal uname compositor drawlines background session kdebug cat yutani-test sysinfo hostname yutani-query env mount date echo nyancat kill ps pstree bim terminal-vga
APPS=init hello sh ls terminal uname compositor drawlines background session kdebug cat yutani-test sysinfo hostname yutani-query env mount date echo nyancat kill ps pstree bim terminal-vga cursor-off
CC=i686-pc-toaru-gcc
AR=i686-pc-toaru-ar

6
apps/cursor-off.c Normal file
View File

@ -0,0 +1,6 @@
#include <syscall.h>
int main(int argc, char * argv[]) {
int x[] = {0xFF,0xFF};
return syscall_system_function(13, (char **)x);
}