OSDev.org
https://forum.osdev.org/

XtremeOS - An 8086 compatible OS written in pure X86 asm
https://forum.osdev.org/viewtopic.php?f=2&t=28049
Page 1 of 2

Author:  Prostyle44 [ Mon May 12, 2014 2:00 am ]
Post subject:  XtremeOS - An 8086 compatible OS written in pure X86 asm

Xtreme operating system is an ultra small and fast operating system written in pure x86 Assembly language. It`s main goal is to provide an advanced User interface for old 8086 Processors. The main goals which xtremeos has accomplished are.
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 31331 times ]
Untitled.jpg
Untitled.jpg [ 59.99 KiB | Viewed 31331 times ]

Author:  embryo [ Mon May 12, 2014 4:52 am ]
Post subject:  Re: XTREMEOS - AN 8086 COMPATIBLE OS WRITTEN IN PURE X86 ASM

Prostyle44 wrote:
It`s main goal is to provide an advanced User interface for old 8086 Processors.

So, your target is user interface? It's a bit different area than the OS development.

Author:  Octocontrabass [ Mon May 12, 2014 5:02 am ]
Post subject:  Re: XTREMEOS - AN 8086 COMPATIBLE OS WRITTEN IN PURE X86 ASM

Prostyle44 wrote:
VGA
Why is VGA the minimum required? My 8086 laptop is only compatible with CGA and the Olivetti M24.

Author:  Prostyle44 [ Mon May 12, 2014 7:27 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

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.

Author:  Bender [ Mon May 12, 2014 7:44 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

Quote:
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.

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.
Octocontrabass: Still have such ancient stuff? :)

Author:  Octocontrabass [ Mon May 12, 2014 8:33 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

Prostyle44 wrote:
And after I`ve finished the operating system can you please test it.
Once I get the laptop fixed, yes. (It needs some new capacitors, and I don't have the tools or skills to replace them.)

Bender wrote:
Still have such ancient stuff? :)
But of course! How else am I going to test the "your computer is not a 386 or newer" code? :lol:

Author:  hometue [ Tue May 13, 2014 1:18 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

Why not just use emulators that would emulate those systems. (Bochs?) Or are you just making sure it runs on real system.

Plus, where did you get those? Don't think you can easily find em in computer shops...or can you?

Author:  embryo [ Tue May 13, 2014 2:20 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

Prostyle44 wrote:
the target of this project is to provide an operating system ... more user-friendly

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.

Author:  Octocontrabass [ Tue May 13, 2014 4:54 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

hometue wrote:
Why not just use emulators that would emulate those systems. (Bochs?) Or are you just making sure it runs on real system.
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:
Plus, where did you get those? Don't think you can easily find em in computer shops...or can you?
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:

Author:  onlyonemac [ Tue May 13, 2014 10:17 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

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. If so it looks pretty good; if not then I'll just stick to DOS (at least DOS puts the current working directory on the command line LOL).

Author:  Prostyle44 [ Wed May 14, 2014 4:48 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

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.
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:
(at least DOS puts the current working directory on the command line LOL).
Haha, but XtremeOS currently does not have directory support. I will add it in the next version.

Attachments:
Untitled3.png
Untitled3.png [ 97.88 KiB | Viewed 31038 times ]

Author:  onlyonemac [ Thu May 15, 2014 4:55 am ]
Post subject:  Re: XTREMEOS - An 8086 compatible OS written in pure X86 asm

So your OS supports both CLI and GUI mode in under 64K?

Author:  Prostyle44 [ Mon Jun 23, 2014 10:54 am ]
Post subject:  Re: XtremeOS - An 8086 compatible OS written in pure X86 asm

sorry for my delay
onlyonemac wrote:
So your OS supports both CLI and GUI mode in under 64K?

Kind of, as the cli is an external program and the gui loads and executes the CLI program.

Author:  Prostyle44 [ Mon Jun 23, 2014 10:56 am ]
Post subject:  Re: XtremeOS - An 8086 compatible OS written in pure X86 asm

New features for XtremeOS are:-

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:
File comment: visicalc running on xtremeos
screen.jpg
screen.jpg [ 37.66 KiB | Viewed 30608 times ]

Author:  onlyonemac [ Mon Jun 23, 2014 1:16 pm ]
Post subject:  Re: XtremeOS - An 8086 compatible OS written in pure X86 asm

This OS is going off-topic. It was supposed to be a small OS for old PCs - why are we suddenly doing Arduinos and Stepper Motors? As far as I'm concerned those only add to the memory consumption.

Also, I'm waiting for a download link so I can try it out.

Page 1 of 2 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/