extern int UI_Initialise(int Width, int Height);
extern void UI_MainLoop(void);
extern int VFS_Init(void);
+extern int PTY_Install(char **Arguments);
extern int Video_Install(char **Arguments);
extern int NativeKeyboard_Install(char **Arguments);
extern int NativeFS_Install(char **Arguments);
NativeFS_Install(NULL);
Mouse_Install(NULL);
IPCPipe_Install(NULL);
+ PTY_Install(NULL);
// - Start VTerm
{
char *args[] = {
VFS_MkDir("/Acess");
VFS_Mount(gsAcessDir, "/Acess", "nativefs", "");
- Debug_SetKTerminal("/Devices/VTerm/8");
+ Debug_SetKTerminal("/Devices/pts/vt7c");
// Start syscall server
SyscallServer();
#define assert(cnd) do{ \
if( !(cnd) ) { \
- fprintf(stderr, "%s:%i - assert failed - " #cnd, __FILE__, __LINE__);\
+ fprintf(stderr, "%s:%i - assert failed - " #cnd"\n", __FILE__, __LINE__);\
exit(-1); \
} \
}while(0)