ZealOS/README.md

84 lines
2.8 KiB
Markdown
Raw Normal View History

2020-02-16 01:18:18 +00:00
# ZenithOS
The Zenith Operating System is a modernized, professional fork of the 64-bit Temple Operating System.
Features in development include:
- Fully-functional AHCI support.
- Compiler optimizations for speed improvements.
2020-02-20 04:43:31 +00:00
- ~~VBE support~~ 32-bit color VBE graphics.
2020-02-16 01:18:18 +00:00
- Network card drivers, network stack.
2020-02-20 23:17:17 +00:00
![](/screenshots/screenshot2.png)
2020-02-21 10:13:45 +00:00
## Getting started
Every commit contains a "Zenith-latest-XXXX-XX-XX-XX-XX_XX_XX.iso" in the root of master, which is a timestamped ISO build of that commit. It might not be complete, or stable. See the "Releases" Tab for the latest stable release.
### Contributing
This basically a read-only repository. Everything happens inside the OS, as intended by Terry. After you've installed the latest release in a VM, you can make changes to the source. Once you've made your changes, you can make copies of the relevant files and put them into a folder, along with some kind of notes as to what you've done as a DolDoc document. You can then make a RedSea ISO file out of that folder by running `RedSeaISO("MyChanges.ISO", "/Home/Folder");`. Mount the VM hard drive in whatever OS-specific way you have to and grab the ISO and send it my way; a pull request attachment would work fine.
## Background
2020-02-16 01:18:18 +00:00
2020-02-16 19:09:24 +00:00
At first, I was developing exclusively inside a VM and occasionally generating ISOs as official releases. This was not a good approach, as things broke and I had no way of telling what changes caused what. So I decided to scrap that and restart from scratch.\
2020-02-16 01:18:18 +00:00
Previous releases are currently archived on the `mega.nz` website:
- [Previous Releases](https://mega.nz/#F!ZIEGmSRQ!qvL6Wk6THzE-dazkfT6N3Q)
2020-02-16 04:42:47 +00:00
Changes include:
- 60FPS.
2020-02-20 04:43:31 +00:00
- VBE graphics with variable resolutions.
2020-02-16 04:42:47 +00:00
- Added a NONE #define for use in default function arguments.
- 440Hz 'A' tuning changed to 432Hz.
2020-02-16 06:37:18 +00:00
- HolyC -> CosmiC.
2020-02-16 04:42:47 +00:00
- System-wide renames:
2020-02-16 04:47:58 +00:00
- AOnce -> ZOnce
2020-02-16 04:42:47 +00:00
- ACAlloc -> ZCAlloc
- AMAlloc -> ZMAlloc
- AStrNew -> ZStrNew
- Adam -> Zenith
2020-02-17 23:17:33 +00:00
- Seth -> Daemon
2020-02-16 04:42:47 +00:00
- BEqu -> BEqual
2020-02-16 04:53:20 +00:00
- Bwd -> Backward
2020-02-16 04:42:47 +00:00
- Cfg -> Config
- Chg -> Change
- Chk -> Check
2020-02-16 04:53:20 +00:00
- Cmp -> Comp
- (Compiler. CCmpCtrl->CCompCtrl, etc)
- Cmp -> Compare
- (StrCmp->StrCompare, etc)
2020-02-16 04:42:47 +00:00
- Cnt -> Count
- Cpy -> Copy
2020-02-16 06:37:18 +00:00
- Cvt -> Convert
2020-02-16 04:42:47 +00:00
- Dbg -> Debug
- Dft -> Default
- Drv -> Drive
- Dsk -> Disk
2020-02-16 06:37:18 +00:00
- Evt -> Event
2020-02-16 04:42:47 +00:00
- Fmt -> Format
- Fwd -> Forward
- Glbls -> Globals
- Hndlr -> Handler
- Lst -> List
- Ms -> Mouse
- Msg -> Message
- Pkt -> Packet
- Pmt -> Prompt
- Prs -> Parse
- QSort -> QuickSort
- Que -> Queue
- Rem -> Remove
- Rst -> Reset
- Rqst -> Request
- Scrn -> Screen
- Snd -> Sound
2020-02-16 06:37:18 +00:00
- Srv -> Server
2020-02-16 04:42:47 +00:00
- Stk -> Stack
- Stmt -> Statement
- TempleOS -> ZenithOS
2020-02-20 23:17:17 +00:00
2020-02-21 10:13:45 +00:00
## Screenshots
32-bit color!
2020-02-21 10:14:28 +00:00
![](/screenshots/screenshot1.png)