Page 217 of 262

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Mar 23, 2018 10:44 pm
by ComputerFido
Image
My OS displaying a cursor with a PS/2 mouse driver

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Mar 25, 2018 10:48 am
by igorov70
Antti: Nice. more info?

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Mar 25, 2018 12:33 pm
by Antti
igorov70 wrote:Antti: Nice. more info?
Thanks, but I'm not sure what info you meant by "more info". :)

My project, in general, is at an early development stage. However, there is one relatively complex component, a boot loader, that is "ready", i.e. I'm trying to make it stable so no new features are added to it unless really needed. When it comes to programming, this project is not a project but the project for me. I'm not going to start it from scratch or abandon it, but I try my best and see how far I get. Also, I'm perfectly happy what the project is at the moment so there is no "I'd be happy if..." or similar.

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Mar 25, 2018 4:24 pm
by hgoel
Image

2nd Revision of Cardinal (after original Cardinal and then Cardinal;). Cardinal# builds upon design stuff learned from the previous write, opting to go for ahead-of-time compiled C# to replace the elf module loading scheme in Cardinal;

Just got the AoT compiler working a bit better, the entire object model is still missing though, that's going to be my next step. Just felt like showing off :P

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Mar 25, 2018 4:39 pm
by igorov70
Antti wrote: Thanks, but I'm not sure what info you meant by "more info". :)
I finding it nice. I was courriuos what i see technologically. A GUI or just wired trick to make the window? The simplistical approach touching my imagination.

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Mar 26, 2018 12:53 am
by Antti
igorov70 wrote:I finding it nice. I was courriuos what i see technologically. A GUI or just wired trick to make the window? The simplistical approach touching my imagination.
It is not a real GUI and calling it as a "wired trick" is a very good description. However, it is quite flexible in general because the boot loader service provides UTF-8 text output to text mode, VGA mode or VBE modes. The memory footprint for all this functionality is very small and I never read data from the framebuffer. Fonts are 7x14 pixels, and this detail alone complicated the VGA mode support.

The simplistic look is a combination of "technical limitations" and stylistic vision. :)

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Mar 26, 2018 6:44 am
by igorov70
Antti: How boot service provide UTF? It two level boot loader or UEFI?

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Mar 26, 2018 7:51 am
by Antti
igorov70 wrote:Antti: How boot service provide UTF? It two level boot loader or UEFI?
There are many steps (e.g. master boot record, volume boot record) but the main logic is in the "actual" boot loader. In short, the boot loader is "a small OS" but there is no full Unicode support, obviously. It is not a modern OS because it does not control hardware. It reads databases and init files from disk and starts an "architecture specific" executable. All these are placed in "high memory" if possible. Init files are "/system/in_ia16.at", "/system/in_ia32.at", and "/system/in_x64.at". They run in real mode, protected mode (ring 3), or long mode (ring 3), respectively. All the time firmware (BIOS) is still in control.

There are boot services, like e.g. console output, keyboard input, serial ports, and block I/O. Also, basic things like the memory map (sorted and "processed") are provided. After init executables are ready, they call an "exit" function and then the boot loader removes itself and returns to ring 0 and init executables are "on their own". The whole layer is written (at least that was the intention) so that the UEFI boot loader will provide the same interface. That is not available yet and will not be in the near future.

At some point I can create a questions & answers topic. This topic is for screenshots! :)

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Mar 27, 2018 3:13 am
by MollenOS
Started using nanovg in my rendering engine for UI.

Image

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Mar 27, 2018 5:35 am
by ProgrammingDuty1
https://imgur.com/EiAP8QO

It can only do output. Cannot figure get input from keyboard :P

-------------------------------------------------------------------
rly need some help - https://github.com/xslendix/X-DOS/
-------------------------------------------------------------------

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Mar 30, 2018 2:17 pm
by Thunderbirds747
ProgrammingDuty1 wrote:https://imgur.com/EiAP8QO

It can only do output. Cannot figure get input from keyboard :P

-------------------------------------------------------------------
rly need some help - https://github.com/xslendix/X-DOS/
-------------------------------------------------------------------
It's actually easy: AH - 00H
AH - BIOS scan code
AL is an ASCII char. (Taken from Stack Overflow).
And it is transmitted after keystroke.
Make a special kbrd.asm file with all keyboard functions.

Re: What does your OS look like? (Screen Shots..)

Posted: Sat Mar 31, 2018 12:19 pm
by qookie
After implementing a VFS, devfs, a ustar driver and ELF loading(+ a few syscalls like read, write etc) I was able to create a tiny init program, a shell, and... a paint program. There were a ton of bugs(most of them in exec) but I managed to remove enough to be able to run this. Programs still can't receive arguments or environment variables and copying from and to user is vulnerable to NULL pointers, but hey, it works!
Image

Re: What does your OS look like? (Screen Shots..)

Posted: Sat Mar 31, 2018 7:43 pm
by mariuszp
I implemented syntax highliting in my interactive shell becuase why not.

This is after I stopped using VGA text mode, and implemented my own kernel console rendering, currently using VESA in the bootloader. It's a first step to porting to UEFI. It also seems to run faster than VGA text mode in VirtualBox.

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Apr 01, 2018 5:27 am
by klange
Image

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Apr 01, 2018 7:53 am
by Schol-R-LEA
Brilliant as always, Klange. Happy First of April!