mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-04-18 05:38:36 +01:00
Raw register dump on left side of screen
Tasks start at 4/5 screen height
This commit is contained in:
parent
ba94931c1b
commit
e4a4fe667c
10 changed files with 109 additions and 102 deletions
src
Binary file not shown.
Binary file not shown.
13
src/Home/MakeHome.CC
Executable file
13
src/Home/MakeHome.CC
Executable file
|
@ -0,0 +1,13 @@
|
|||
Cd(__DIR__);;
|
||||
|
||||
//If these are not present in /Home, it uses the version in the root dir. You
|
||||
//can make your own, modified, version of these files in your /Home directory.
|
||||
#include "~/HomeLocalize"
|
||||
#include "/Zenith/Boot/MakeBoot"
|
||||
#include "/Zenith/Utils/MakeUtils"
|
||||
#include "~/HomeWrappers"
|
||||
MapFileLoad("::/Kernel/Kernel");
|
||||
MapFileLoad("::/Compiler/Compiler");
|
||||
#include "~/HomeKeyPlugIns"
|
||||
#include "~/HomeSys"
|
||||
Cd("..");;
|
BIN
src/Kernel.BIN.C
BIN
src/Kernel.BIN.C
Binary file not shown.
|
@ -286,7 +286,7 @@ I64 *TaskRegAddr(CTask *task,I64 reg_num)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
#define RAWDR_COL 40
|
||||
#define RAWDR_COL (text.cols-40)
|
||||
|
||||
U0 RawDr(CTask *task=NULL)
|
||||
{
|
||||
|
|
|
@ -225,7 +225,7 @@ I64 TaskInit(CTask *task,I64 stack_size)
|
|||
task->title_src =TTS_CONST;
|
||||
task->win_left =1;
|
||||
task->win_right =text.cols-2;
|
||||
task->win_top =13;
|
||||
task->win_top =text.rows / 5 + 3;
|
||||
task->win_bottom =text.rows-2;
|
||||
|
||||
if (blkdev.home_dir) {//Beware Zenith $LK,"TaskInit",A="FF:::/Kernel/KStart64.CC,TaskInit"$. I guess ok until $LK,"DiskChange",A="FF:::/Kernel/KMain.CC,DiskChange"$().
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -19,7 +19,7 @@ HashTablePurge(zenith_task->hash_table);
|
|||
|
||||
//Debug("Type 'G;'");
|
||||
DocTermNew;
|
||||
WinVert(2,10);
|
||||
WinVert(2,text.rows / 5);
|
||||
|
||||
sys_winmgr_task=Spawn(&WinMgrTask,NULL,"Window Mgr");
|
||||
Fs->win_inhibit=WIG_TASK_DEFAULT-WIF_SELF_BORDER
|
||||
|
|
Binary file not shown.
|
@ -127,7 +127,7 @@ public U0 ACInit(U8 *mask=NULL)
|
|||
ACMainFileListTraverse(mask);
|
||||
|
||||
ACDWordsLoad;
|
||||
RegDefault("AutoComplete", "ac.col = TEXT_COLS-30;ac.row = 15;");
|
||||
RegDefault("AutoComplete", "ac.col = TEXT_COLS-30;ac.row = TEXT_ROWS/5+4;");
|
||||
RegExe("AutoComplete");
|
||||
LBtr(&ac.flags,ACf_INIT_IN_PROGRESS);
|
||||
LBts(&sys_run_level,RLf_AUTOCOMPLETE);
|
||||
|
|
Loading…
Reference in a new issue