Skip to content
This repository has been archived by the owner on Apr 20, 2024. It is now read-only.

Commit

Permalink
TempleOS V5.03 Nightly (ISO SHA-1 f723193)
Browse files Browse the repository at this point in the history
  • Loading branch information
Terry A. Davis authored and ohnxbot committed Sep 9, 2018
1 parent 940c73d commit 07a766f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
Binary file modified 0000Boot/0000Kernel.BIN.C
Binary file not shown.
2 changes: 1 addition & 1 deletion Adam/ADefine.HC
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ U0 LoadDocDefines()
//$LK,"DD_BOOT_HIGH_LOC_DVD",A="FF:::/Adam/Opt/Boot/BootDVD.HC,DD_BOOT_HIGH_LOC_DVD"$

$TR,"LineRep"$
$ID,2$DefinePrint("DD_TEMPLEOS_LOC","80,859");
$ID,2$DefinePrint("DD_TEMPLEOS_LOC","80,871");
$ID,-2$
DefinePrint("DD_MP_VECT","%08X",MP_VECT_ADDR);
DefinePrint("DD_MP_VECT_END","%08X",
Expand Down
19 changes: 15 additions & 4 deletions Adam/God/GodSong.HC
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,22 @@ public U8 *GodSongStr()
return buf;
}

public U0 GodSong()
{//Make God generate 2measuresx2+2measuresx2. $LK+PU,"Holy Spirit Instructions",A="FI:::/Adam/God/HSNotes.DD"$
U8 *st1=GodSongStr,*st2=GodSongStr;
public U8 *GodSongStdStr()
{//Make std God generate song. (2measuresx2+2measuresx2).
U8 *st=NULL,*st1=GodSongStr,*st2=GodSongStr;
if (st1 && st2)
DocPrint(DocPut,"$$SO,\"<Song>\",A=\"%s%s%s%s\"$$",st1,st1,st2,st2);
st=MStrPrint("%s%s%s%s",st1,st1,st2,st2);
Free(st1);
Free(st2);
return st;
}

#help_index "God;DolDoc"
public U0 DocInsGodSongStd(CDoc *doc=NULL)
{//Ins Std God generate song.
U8 *st;
if (!doc) doc=DocPut;
if (st=GodSongStdStr)
DocPrint(doc,"$$SO,\"<Song>\",A=\"%s\"$$",st);
Free(st);
}
Binary file modified Compiler/Compiler.BIN
Binary file not shown.
1 change: 1 addition & 0 deletions Compiler/CompilerB.HH
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public extern U0 Ui(U8 *buf,U8 **_rip,I64 seg_size=64,
I64 *_jmp_dst=NULL,Bool just_ins=FALSE);
public extern I64 Un(U8 *rip,I64 cnt=0x80,I64 seg_size=64);
extern CUAsmGlbls uasm;

#help_index "Hash/System"
public extern I64 HashEntrySize(CHashSrcSym *tmph);
public extern I64 HashEntrySize2(CHashSrcSym *tmph);
Expand Down
2 changes: 1 addition & 1 deletion Demo/AcctExample/Registry.HC
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $ID,-2$$TR,"Titanium"$
$ID,2$I64 best_score=16469;
$ID,-2$$TR,"TOSRegen"$
$ID,2$progress1_tf=0.000;progress2_tf=0.000;
progress3_tf=0.000;progress4_tf=89.879;
progress3_tf=0.000;progress4_tf=92.922;
$ID,-2$$TR,"TempleTetris"$
$ID,2$I64 hiscore=0;
$ID,-2$$ID,-2$$TR,"Once"$
Expand Down
2 changes: 1 addition & 1 deletion Kernel/KernelC.HH
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public extern U8 *AStrNew(U8 *buf);

#help_index "Char/Operations;Memory/Heap"
public extern U8 *StrNew(U8 *buf,CTask *mem_task=NULL);

#help_index "Char/Output;StdOut"
public extern U0 GetOutOfDollar();
public extern Bool IsSilent();
Expand Down Expand Up @@ -153,7 +154,6 @@ public extern I64 LinkedLstCnt(U8 **_lst);
public extern U8 *LinkedLstCopy(U8 **_lst,CTask *mem_task=NULL);
public extern U0 LinkedLstDel(U8 **_lst);
public extern I64 LinkedLstSize(U8 **_lst);

#help_index "Data Types/Queue Vector"
public extern U0 QueVectU8Del(CQueVectU8 *v);
public extern I64 QueVectU8Get(CQueVectU8 *v,I64 idx);
Expand Down

0 comments on commit 07a766f

Please sign in to comment.