CoolFace
Datasetpublic

hschumann2/TempleOS-Source-Code

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes838downloads
HomeSys.txt40 linesDownload Raw Back to root
1 2//Place this file in /Home and change3//anything you want.4 5U0 UserStartUp()6{//Run each time a user a spawned7  DocTermNew;8  Type("::/Doc/Start.DD");9  LBts(&Fs->display_flags,DISPLAYf_SHOW);10  WinToTop;11  WinZBufUpdate;12  Dir;13}14 15U0 SrvStartUp()16{//Run each time a srv task is spawned.17  DocTermNew;18  LBts(&Fs->display_flags,DISPLAYf_SHOW);19  WinToTop;20  WinZBufUpdate;21}22 23U0 StartUpTasks()24{25  CTask *user1,*user2;26  user1=User;27  user2=User;28  WinToTop(user1);29  WinTileVert;30  "Boot Time:%7.3fs\n",tS;31  XTalk(user1,"Cd;#include \"Once\";\n");32  Silent;       //no output to scrn33  ACInit("/*;!*/Bible.TXT*");34  Silent(OFF); //no output to scrn35}36 37StartUpTasks;38 39"\nTempleOS V%5.3f\t%D %T\n\n",sys_os_version,sys_compile_time,sys_compile_time;40