diff --git a/src/Doc/Credits.DD b/src/Doc/Credits.DD index 6351f9ce..efcf085e 100755 --- a/src/Doc/Credits.DD +++ b/src/Doc/Credits.DD @@ -1,6 +1,6 @@ $WW,1$$FG,5$$TX+CX,"Credits"$$FG$ -$FG,2$Terry A. Davis$FG$ wrote all of TempleOS over a span of $FG,2$$TX,"15.0",D="DD_TEMPLEOS_AGE"$$FG$ years (full-time). ZealOS, written over a span of $FG,2$$TX,"2.3",D="DD_ZEALOS_AGE"$$FG$ years, is a fork of TempleOS. It can run on some bare metal 64-bit PC's from about 2007-2019 with no layering, libraries, tools, modules or anything from other sources. Otherwise, you run it in a virtual machine, like $FG,2$VMware$FG$, $FG,2$QEMU$FG$ or $FG,2$VirtualBox$FG$. It is independent and stands alone. 100% of the src code is including on all distro's, from the kernel to the compiler to the boot loaders! It is public domain, not GPL. +$FG,2$Terry A. Davis$FG$ wrote all of TempleOS over a span of $FG,2$$TX,"15.0",D="DD_TEMPLEOS_AGE"$$FG$ years (full-time). ZealOS, written over a span of $FG,2$$TX,"2.6",D="DD_ZEALOS_AGE"$$FG$ years, is a fork of TempleOS. It can run on some bare metal 64-bit PC's from about 2007-2019 with no layering, libraries, tools, modules or anything from other sources. Otherwise, you run it in a virtual machine, like $FG,2$VMware$FG$, $FG,2$QEMU$FG$ or $FG,2$VirtualBox$FG$. It is independent and stands alone. 100% of the src code is including on all distro's, from the kernel to the compiler to the boot loaders! It is public domain, not GPL. *) $LK,"ATA Reg and Cmd Definitions",A="MN:ATA_NOP"$ are originally from Linux. Later, Terry got the spec. @@ -18,6 +18,8 @@ $FG,2$Terry A. Davis$FG$ wrote all of TempleOS over a span of $FG,2$$TX,"15.0",D *) Thanks to whoever wrote this $FG,4$$TX,"CppHtml.ZC",HTML="http://web.archive.org/web/20100325153025/http://home.scarlet.be/zoetrope/cpphtml.htm"$$FG$. Terry was a novice on web stuff and you helped him with html. See $LK,"::/Demo/ToHtmlToTXTDemo/ToHtml.ZC"$. +*) Terry used the $FG,4$$TX,"ISO9660",HTML="http://users.telenet.be/it3.consultants.bvba/handouts/ISO9960.html"$$FG$ spec to help him understand the ISO9660 file system format. + *) Terry looked at bootable CD boot sectors, but didn't learn anything, finding it easier to make his own. *) Terry thought he got his original PC speaker code from $FG,2$Borland C$FG$. diff --git a/src/Doc/Features.DD b/src/Doc/Features.DD index 02d375c9..20657e98 100755 --- a/src/Doc/Features.DD +++ b/src/Doc/Features.DD @@ -16,9 +16,9 @@ * Keyboard & Mouse support. -* AHCI ATA Hard drives, support for $FG,2$FAT32$FG$ and $LK,"RedSea",A="FI:::/Doc/RedSea.DD"$ file systems. +* AHCI ATA hard drives, support for $FG,2$FAT32$FG$ and $LK,"RedSea",A="FI:::/Doc/RedSea.DD"$ file systems. -* AHCI ATAPI $FG,2$CD/DVD$FG$ support with $FG,2$RedSea$FG$ file system. Can make bootable ISO files so you can roll-your-own distro's. +* AHCI ATAPI $FG,2$CD/DVD$FG$ drives, support for $FG,2$ISO9660$FG$ and $LK,"RedSea",A="FI:::/Doc/RedSea.DD"$ file systems. Can make bootable ISO files so you can roll-your-own distro's. * $LK,"Partitioning",A="MN:DiskPart"$ tool, installer, $FG,2$boot loaders$FG$ for CD/DVD and hard disk. diff --git a/src/Doc/FileMgr.DD b/src/Doc/FileMgr.DD index afebffd5..73e1d47d 100755 --- a/src/Doc/FileMgr.DD +++ b/src/Doc/FileMgr.DD @@ -52,7 +52,7 @@ $FG,2$'m'$FG$ $ID,2$Make CD/DVD ISO.C file. This creates a $LK,"RedSea",A="FI:::/Doc/RedSea.DD"$ ISO file image of the dir the cursor is on. The name of the ISO file is $FG,2$$TX,"\"::/Tmp/CDDVD.ISO.C\"",D="DEFAULT_ISO_C_FILENAME"$$FG$ $LK,"blkdev.default_iso_c_filename",A="MN:CBlkDevGlobals"$ and can be redefined in your start-up scripts. You may wish to place it on a different drive. $ID,-2$ $FG,2$'M'$FG$ -$ID,2$Make CD/DVD ISO file. This creates a ISO9660 file image of the dir the cursor is on. The name of the ISO file is$FG,2$$TX,"",D="DFT_ISO_FILENAME"$$FG$ $LK,"blkdev.dft_iso_filename",A="MN:CBlkDevGlbls"$ and can be redefined in your start-up scripts. You may wish to place it on a different drive. +$ID,2$Make CD/DVD ISO file. This creates a ISO9660 file image of the dir the cursor is on. The name of the ISO file is$FG,2$$TX,"",D="DFT_ISO_FILENAME"$$FG$ $LK,"blkdev.default_iso_filename",A="MN:CBlkDevGlobals"$ and can be redefined in your start-up scripts. You may wish to place it on a different drive. $ID,-2$ $FG,2$'B'$FG$ $ID,2$Burn CD/DVD ISO file. This burns a CD/DVD using the image file, $FG,2$$TX,"\"::/Tmp/CDDVD.ISO\"",D="DEFAULT_ISO_FILENAME"$$FG$ $LK,"blkdev.default_iso_filename",A="MN:CBlkDevGlobals"$ to the drive the cursor is on. diff --git a/src/Doc/FileMgrPullDown.DD b/src/Doc/FileMgrPullDown.DD index cf6f581c..b55afe51 100755 --- a/src/Doc/FileMgrPullDown.DD +++ b/src/Doc/FileMgrPullDown.DD @@ -21,6 +21,7 @@ CDDVD DiskChange(,'c'); MountISOC(,'i'); MakeRedSeaISOC(,'m'); + MakeISO9660ISO(,'M'); BurnISOFile(,'B'); } diff --git a/src/Doc/Glossary.DD b/src/Doc/Glossary.DD index f0c5e7be..ef4bfde6 100755 --- a/src/Doc/Glossary.DD +++ b/src/Doc/Glossary.DD @@ -218,7 +218,7 @@ $FG,5$*.ZXE;*.ZXE$FG$ $FG,5$*.DATA$FG$ Data files $FG,5$*.ISO;*.ISO.C$FG$ - CD/DVD image file. + CD/DVD image file. $LK,"RedSea",A="FI:::/Doc/RedSea.DD"$ or ISO9660. $FG,5$*.IN$FG$ $FG,2$InFile$FG$ Basically a ZealC program whose stdout goes to the input of a task when $LK,"InFile",A="MN:InFile"$() is called. $FG,5$*.GR$FG$ diff --git a/src/Doc/HelpIndex.DD b/src/Doc/HelpIndex.DD index b1483a4a..c34c06ce 100755 Binary files a/src/Doc/HelpIndex.DD and b/src/Doc/HelpIndex.DD differ diff --git a/src/Doc/Requirements.DD b/src/Doc/Requirements.DD index 9ab7adbc..cee25054 100755 --- a/src/Doc/Requirements.DD +++ b/src/Doc/Requirements.DD @@ -14,7 +14,7 @@ $FG,5$Supported Hardware$FG$ * Internal PC Speakers. -* CD/DVD-ROMs (not SCSI) but only RedSea file system. +* CD/DVD-ROMs (not SCSI), RedSea or ISO9660 file system. * SATA hard drives. (SATA, mSATA, m.2) diff --git a/src/Doc/StandBy.DD b/src/Doc/StandBy.DD index 4ed2e933..40328cf8 100755 --- a/src/Doc/StandBy.DD +++ b/src/Doc/StandBy.DD @@ -22,4 +22,4 @@ $FG,2$ $FG$ God Word $FG,2$ $FG$ God Passage $FG,2$ $FG$ God Song $FG,2$$FG$ Close AC -$FG,2$ $FG$ Open AC \ No newline at end of file +$FG,2$ $FG$ Open AC