blob: 177e100060e11cdc7325e19174b861542c9eb0c1 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stdio.h>
#include "../interface/syscalls.h"
/** invalidate screen rectangle */
// we pack x,y and width,height togehter
int _gui_inval(uint32_t xy, uint32_t wh)
{
return syscall(SYSCALL_GUI_RECT,xy,wh,0);
}
|