Page 231 of 262

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

Posted: Sat Jan 25, 2020 5:01 am
by TheArturZh
A simple barebones 64-bit higher-half kernel for x86_64. At least it works.
os_feels.png

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

Posted: Mon Jan 27, 2020 1:44 am
by lycmtz
this is my OS:
The attachment screenshot.png is no longer available

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

Posted: Tue Jan 28, 2020 4:40 pm
by qookie
Last time I posted here, I was showing off kmscon running on Managarm. While terminal emulators, editors, and all that are good to have, they're boring. Managarm offered nothing to entertain, until recently. We ported SDL2, which opened many possibilities for porting games and such. Initially it only worked under the KMSDRM video target, but yesterday I got it working under Wayland. I first wanted to port DOOM, but I couldn't decide on the source port to use, so we ported tyr-quake instead. After finishing the porting, we decided to do something about the poor graphics performance and worked on finishing the LLVM port and compiling Mesa with the llvmpipe driver instead of the slow softpipe driver. After VVVVVV was open-sourced it also got ported (Serenity OS beat us by a day or two though :^) ).

The picture shows both the VVVVVV port and the tyr-quake port running at once with good performance, on a VM with a single core.

Image

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

Posted: Tue Jan 28, 2020 6:27 pm
by klange
qookie wrote:After VVVVVV was open-sourced it also got ported
VVVVVV is absolutely not open source.

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

Posted: Wed Jan 29, 2020 10:35 am
by qookie
klange wrote:VVVVVV is absolutely not open source.
You are right, I did use the wrong term. By open-sourced I meant the source being released under a license that would allow us to port it.

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

Posted: Sat Feb 01, 2020 4:11 am
by Thunderbirds747
Here's a very primitive kernel of ExpOS, made on a virtual machine running Windows XP SP3 and Bochs 2.6.10,
A lot of functions are to be implemented soon.

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

Posted: Thu Feb 06, 2020 7:09 pm
by nielsd
Last week I've been working on a slab allocator heap and integrating a wasm compiler (Cranelift) inside my kernel.
This is a simple wasm program executing and writing a fibonacci value to its memory slice, then the kernel reads it to verify.
Image

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

Posted: Sat Feb 15, 2020 3:39 pm
by nakst
been busy rewriting my user interface code 8)
Image

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

Posted: Mon Feb 24, 2020 5:05 am
by Thunderbirds747
nakst wrote:been busy rewriting my user interface code 8)
Image
Your OS seems quite impressive due to the fact that you implemented an advanced GUI. Looks awesome!

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

Posted: Wed Mar 04, 2020 6:46 pm
by zesterer
nakst wrote:been busy rewriting my user interface code 8)
Image
That's absolutely amazing. It looks like a modern UI mockup, not a real GUI running on a hobby OS. Superb work!

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

Posted: Wed Mar 11, 2020 12:23 pm
by Gigasoft
Added an on-screen debugger.

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

Posted: Thu Mar 12, 2020 1:02 pm
by Korona
Managarm running mednafen. Most of the work was done by qookie (including the pthread implementation). I focus more on core improvements right now.

Image

Image Image

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

Posted: Thu Mar 12, 2020 1:18 pm
by nullplan
Korona wrote:Managarm running mednafen. Most of the work was done by qookie (including the pthread implementation). I focus more on core improvements right now.
I can imagine few things more awesome than this (in the original sense: awe-inspiring). Good work!

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

Posted: Thu Mar 19, 2020 2:22 pm
by sleephacker
I recently got back into osdev. I've started again from scratch and this time I'm doing it the right way ( = what I said before my previous attempt). I've completed most of the work on my bootloader, this time it actually does all the things you'd expect from it so that the kernel, when I have a kernel, can be completely agnostic of the firmware. It even has menu's! Some pics of it running on real hardware:

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

Posted: Fri Mar 20, 2020 10:38 am
by eekee
@sleephacker: Sweet! But is the kernel really <= 4096 bytes? $b000 - $a000 = 4096.