A cute little disk operating system (DOS) built with COSMOS.
Go to file
Innovation Inc 3ea781af2b modified: src/.vs/DremDOS/v16/.suo
modified:   src/DremDOS.sln
	deleted:    src/DremDOS/Calculator.cs
	deleted:    src/DremDOS/DesktopEnvironment.cs
	deleted:    src/DremDOS/DirectoryListing.cs
	deleted:    src/DremDOS/DirectoryOperations.cs
	modified:   src/DremDOS/DremDOS.csproj
	deleted:    src/DremDOS/Drives.cs
	deleted:    src/DremDOS/FileOperations.cs
	modified:   src/DremDOS/Kernel.cs
	deleted:    src/DremDOS/Kitty.cs
	deleted:    src/DremDOS/MouseDriver.cs
	deleted:    src/DremDOS/PowerOperations.cs
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.asm
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.bin
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.cdb
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.iso
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.log.html
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.map
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/DremDOS.obj
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/ISO/DremDOS.bin
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/ISO/isolinux.bin
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/ISO/ldlinux.c32
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/ISO/libcom32.c32
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/ISO/mboot.c32
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/ISO/syslinux.cfg
	deleted:    src/DremDOS/bin/Debug/netcoreapp2.0/cosmos/XSharp.Assembler.log
	deleted:    src/DremDOS/obj/Debug/netcoreapp2.0/cosmos/DremDOS.assets.cache
	deleted:    src/DremDOS/obj/Debug/netcoreapp2.0/cosmos/DremDOS.csproj.FileListAbsolute.txt
	modified:   src/DremDOS/obj/DremDOS.csproj.nuget.dgspec.json
	modified:   src/DremDOS/obj/DremDOS.csproj.nuget.g.props
	modified:   src/DremDOS/obj/DremDOS.csproj.nuget.g.targets
	modified:   src/DremDOS/obj/project.assets.json
2022-02-11 16:33:37 -06:00
docs 0.0.1 2020-04-14 20:02:14 -05:00
src modified: src/.vs/DremDOS/v16/.suo 2022-02-11 16:33:37 -06:00
README.md Update README.md 2020-04-14 20:12:21 -05:00

DremDOS - a tiny disk operating system built with COSMOS

What is DremDOS?

DremDOS is a simple disk operating system made with C# that is built with COSMOS, a set of building blocks to make operating systems with high-level programming languages such as C#, VB, F#, etc.

DremDOS's Features

DremDOS is currently very basic and is unable to do much.
However, these are it's current features:

  • Create and delete directories
  • List directory contents
  • Change the current directory
  • Create and edit files with Kitty, which is not a reference to the Linux command "cat" at all
  • Copy and move files
  • Delete files
  • Clear the screen
  • Check the time
  • Calculate basic math problems
  • The ability to use every CPU cycle to beep
  • List all* connected drives
  • A very basic GUI (with a mouse driver). Thanks SparrOSDeveloperTeam!
  • Shut down the computer once you're bored of it

*It seems COSMOS only supports one drive though. Technically the code should allow DremDOS to see multiple drives once the filesystem/hard drive drivers are fully implimented.

Building DremDOS

Building DremDOS is simple.

  1. Go to COSMOS's website and install the UserKit and DevKit**. Every prerequisite there is a prerequisite for DremDOS!
  2. Download this repository and copy everything in the "src" folder to a new folder named DremDOS***. It should be located at C:\Users\[your username]\sources\repos\DremDOS.
  3. Open the project in Visual Studio 2019. Modify it as you like and build it. The ISO will be outputted in the PATH\TO\DremDOS\DremDOS\bin\Debug\netcoreapp2.0\cosmos folder and be named DremDOS.iso.

** DevKit is technically not required right now, but will be required in a later release.
*** This is only needed if you want to edit DremDOS as your own. If you just want to build it, you should be able to just open the solution file and build it. This is untested, though.

Better documentation coming soon.