Raw register dump on left side of screen

Tasks start at 4/5 screen height
This commit is contained in:
xmm15 2020-02-19 17:52:56 -06:00
parent ba94931c1b
commit e4a4fe667c
10 changed files with 109 additions and 102 deletions

Binary file not shown.

Binary file not shown.

13
src/Home/MakeHome.CC Executable file
View 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("..");;

Binary file not shown.

View file

@ -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)
{

View file

@ -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

View file

@ -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.

View file

@ -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);