XtremeOS - An 8086 compatible OS written in pure X86 asm
- Prostyle44
- Posts: 15
- Joined: Sun May 11, 2014 12:16 am
XtremeOS - An 8086 compatible OS written in pure X86 asm
Post by Prostyle44 »
1) Provide a fast and small operating systems.
2) Provides an advanced user interface
3) Can work on all X86 processors.
4) Requires only 64KB of RAM.
5) Works on a 320 x 200 256 color VGA screen.
This OS is not fully complete. Once it is fully completed I will post a link.
Screenshots:
- Attachments
- 
			
		
				- Untitled2.jpg
- Untitled2.jpg (8.8 KiB) Viewed 83769 times
 
- embryo
Re: XTREMEOS - AN 8086 COMPATIBLE OS WRITTEN IN PURE X86 ASM
Post by embryo »
So, your target is user interface? It's a bit different area than the OS development.Prostyle44 wrote:It`s main goal is to provide an advanced User interface for old 8086 Processors.
- Octocontrabass
- Member
 Member
- Posts: 6016
- Joined: Mon Mar 25, 2013 7:01 pm
Re: XTREMEOS - AN 8086 COMPATIBLE OS WRITTEN IN PURE X86 ASM
Post by Octocontrabass »
Why is VGA the minimum required? My 8086 laptop is only compatible with CGA and the Olivetti M24.Prostyle44 wrote:VGA
- Prostyle44
- Posts: 15
- Joined: Sun May 11, 2014 12:16 am
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by Prostyle44 »
Octocontrabass: VGA is not the minimum requirement. I`m planning to add CGA and EGA support too. And after I`ve finished the operating system can you please test it.
- Bender
- Member
 Member
- Posts: 449
- Joined: Wed Aug 21, 2013 3:53 am
- Libera.chat IRC: bender|
- Location: Asia, Singapore
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
I guess what embryo means by saying that your goal is to 'provide a UI' shouldn't be the first goal. The UI part of the system is usually implemented after a stable base has been designed and developed. After all why would there exist a UI? Too provide the user a way to access devices, files, programs etc.? Those need to be implemented first. I'm not going to interfere with your roadmap. You're free to implement and focus on what you want.embryo: No, my target is not only user interface. the target of this project is to provide an operating system with an more advanced and a more user-friendly operating system for the 8086 platform than any other operating system. I will also concentrate on the other parts of the operating system.
Octocontrabass: VGA is not the minimum requirement. I`m planning to add CGA and EGA support too. And after I`ve finished the operating system can you please test it.
Octocontrabass: Still have such ancient stuff? :)
(R3X Runtime VM)(CHIP8 Interpreter OS)
- Octocontrabass
- Member
 Member
- Posts: 6016
- Joined: Mon Mar 25, 2013 7:01 pm
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by Octocontrabass »
Once I get the laptop fixed, yes. (It needs some new capacitors, and I don't have the tools or skills to replace them.)Prostyle44 wrote:And after I`ve finished the operating system can you please test it.
But of course! How else am I going to test the "your computer is not a 386 or newer" code? :lol:Bender wrote:Still have such ancient stuff? :)
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Plus, where did you get those? Don't think you can easily find em in computer shops...or can you?
- embryo
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by embryo »
User friendliness can be elaborated a lot using graphics editor and simple program with drawing and animation capabilities. But (as already mentioned above) what is the world that you see so friendly? First of all there should be the world to display and play with. Usually this world called OS. And on top of the world we can draw our skins or screens or 3D animations or whatever we like.Prostyle44 wrote:the target of this project is to provide an operating system ... more user-friendly
- Octocontrabass
- Member
 Member
- Posts: 6016
- Joined: Mon Mar 25, 2013 7:01 pm
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by Octocontrabass »
Emulators are useful, but they usually don't cover the weird hardware (and BIOS) quirks that show up every now and then. Besides, running on real hardware is more fun!hometue wrote:Why not just use emulators that would emulate those systems. (Bochs?) Or are you just making sure it runs on real system.
Most have been given to me by friends or family, but a few came from secondhand stores. I wouldn't bother with computer shops; they only sell things that work! :lol:hometue wrote:Plus, where did you get those? Don't think you can easily find em in computer shops...or can you?
- onlyonemac
- Member
 Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by onlyonemac »
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
- Prostyle44
- Posts: 15
- Joined: Sun May 11, 2014 12:16 am
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by Prostyle44 »
The second screenshot is real and working. I have added an image of it running on qemu. I could achieve it under 64 KB because the background image type is PCX and is pcx images are easy to display. And the icons are created by my VGA API.onlyonemac wrote:Is the second screenshot real, or is it a goal or something? I ask because it's vastly different from the other one, and not something which I would expect to see in 64 K of RAM.
Haha, but XtremeOS currently does not have directory support. I will add it in the next version.onlyonemac wrote:(at least DOS puts the current working directory on the command line LOL).
- Attachments
- onlyonemac
- Member
 Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm
Post by onlyonemac »
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
- Prostyle44
- Posts: 15
- Joined: Sun May 11, 2014 12:16 am
Re: XtremeOS - An 8086 compatible OS written in pure X86 asm
Post by Prostyle44 »
Kind of, as the cli is an external program and the gui loads and executes the CLI program.onlyonemac wrote:So your OS supports both CLI and GUI mode in under 64K?
- Prostyle44
- Posts: 15
- Joined: Sun May 11, 2014 12:16 am
Re: XtremeOS - An 8086 compatible OS written in pure X86 asm
Post by Prostyle44 »
1) Stepper motor control
2) Dial-up modem terminal
3) Basic Dos compatibility
4) Radio transmitter circuit support ( AM only )
5) Arduino Access
more to come...
Anyone who wants to join this project PM me.
- Attachments
- 
			
				- visicalc running on xtremeos
- visicalc running on xtremeos
 
- onlyonemac
- Member
 Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: XtremeOS - An 8086 compatible OS written in pure X86 asm
Post by onlyonemac »
Also, I'm waiting for a download link so I can try it out.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing