Skip to content

Commit 07a766f

Browse files
Terry A. Davisohnxbot
authored andcommitted
TempleOS V5.03 Nightly (ISO SHA-1 f723193)
1 parent 940c73d commit 07a766f

File tree

7 files changed

+19
-7
lines changed

7 files changed

+19
-7
lines changed

0000Boot/0000Kernel.BIN.C

0 Bytes
Binary file not shown.

Adam/ADefine.HC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ U0 LoadDocDefines()
1515
//$LK,"DD_BOOT_HIGH_LOC_DVD",A="FF:::/Adam/Opt/Boot/BootDVD.HC,DD_BOOT_HIGH_LOC_DVD"$
1616

1717
$TR,"LineRep"$
18-
$ID,2$DefinePrint("DD_TEMPLEOS_LOC","80,859");
18+
$ID,2$DefinePrint("DD_TEMPLEOS_LOC","80,871");
1919
$ID,-2$
2020
DefinePrint("DD_MP_VECT","%08X",MP_VECT_ADDR);
2121
DefinePrint("DD_MP_VECT_END","%08X",

Adam/God/GodSong.HC

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,22 @@ public U8 *GodSongStr()
161161
return buf;
162162
}
163163

164-
public U0 GodSong()
165-
{//Make God generate 2measuresx2+2measuresx2. $LK+PU,"Holy Spirit Instructions",A="FI:::/Adam/God/HSNotes.DD"$
166-
U8 *st1=GodSongStr,*st2=GodSongStr;
164+
public U8 *GodSongStdStr()
165+
{//Make std God generate song. (2measuresx2+2measuresx2).
166+
U8 *st=NULL,*st1=GodSongStr,*st2=GodSongStr;
167167
if (st1 && st2)
168-
DocPrint(DocPut,"$$SO,\"<Song>\",A=\"%s%s%s%s\"$$",st1,st1,st2,st2);
168+
st=MStrPrint("%s%s%s%s",st1,st1,st2,st2);
169169
Free(st1);
170170
Free(st2);
171+
return st;
172+
}
173+
174+
#help_index "God;DolDoc"
175+
public U0 DocInsGodSongStd(CDoc *doc=NULL)
176+
{//Ins Std God generate song.
177+
U8 *st;
178+
if (!doc) doc=DocPut;
179+
if (st=GodSongStdStr)
180+
DocPrint(doc,"$$SO,\"<Song>\",A=\"%s\"$$",st);
181+
Free(st);
171182
}

Compiler/Compiler.BIN

0 Bytes
Binary file not shown.

Compiler/CompilerB.HH

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public extern U0 Ui(U8 *buf,U8 **_rip,I64 seg_size=64,
7272
I64 *_jmp_dst=NULL,Bool just_ins=FALSE);
7373
public extern I64 Un(U8 *rip,I64 cnt=0x80,I64 seg_size=64);
7474
extern CUAsmGlbls uasm;
75+
7576
#help_index "Hash/System"
7677
public extern I64 HashEntrySize(CHashSrcSym *tmph);
7778
public extern I64 HashEntrySize2(CHashSrcSym *tmph);

Demo/AcctExample/Registry.HC

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $ID,-2$$TR,"Titanium"$
6060
$ID,2$I64 best_score=16469;
6161
$ID,-2$$TR,"TOSRegen"$
6262
$ID,2$progress1_tf=0.000;progress2_tf=0.000;
63-
progress3_tf=0.000;progress4_tf=89.879;
63+
progress3_tf=0.000;progress4_tf=92.922;
6464
$ID,-2$$TR,"TempleTetris"$
6565
$ID,2$I64 hiscore=0;
6666
$ID,-2$$ID,-2$$TR,"Once"$

Kernel/KernelC.HH

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ public extern U8 *AStrNew(U8 *buf);
9191

9292
#help_index "Char/Operations;Memory/Heap"
9393
public extern U8 *StrNew(U8 *buf,CTask *mem_task=NULL);
94+
9495
#help_index "Char/Output;StdOut"
9596
public extern U0 GetOutOfDollar();
9697
public extern Bool IsSilent();
@@ -153,7 +154,6 @@ public extern I64 LinkedLstCnt(U8 **_lst);
153154
public extern U8 *LinkedLstCopy(U8 **_lst,CTask *mem_task=NULL);
154155
public extern U0 LinkedLstDel(U8 **_lst);
155156
public extern I64 LinkedLstSize(U8 **_lst);
156-
157157
#help_index "Data Types/Queue Vector"
158158
public extern U0 QueVectU8Del(CQueVectU8 *v);
159159
public extern I64 QueVectU8Get(CQueVectU8 *v,I64 idx);

0 commit comments

Comments
 (0)