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

What does your OS look like? (Screen Shots..)
https://forum.osdev.org/viewtopic.php?f=1&t=12087
Page 228 of 260

Author:  ComputerFido [ Sat May 25, 2019 7:02 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

This is my OS so far, I have a basic file manager which can't really do much except execute programs and I have written a CHIP-8 emulator (mostly working except the input is broken) as well as a snake game.

Image

Author:  deleted8917 [ Sun Jun 09, 2019 3:29 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Finally added support to FAT32 filesystem. Currently I can only read files with short name,longer that a sector but less than a cluster. Having some problems,for example says that the file doesn't exists but actually it does. :/ But that can be fixed. :)
Image

Author:  Planetary [ Tue Jun 11, 2019 2:06 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Image
This OS is called 'Planetary'.
GUI mode currently just boots you in to a 1024x768 24 bit color blank screen. Mouse support and double buffering is being worked on.
All commands work as described, but GUI mode is very incomplete.

Author:  nuclear [ Tue Jun 18, 2019 5:18 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Here's a special-purpose system I'm hacking currently. It's purpose is to allow booting off a USB stick and watching 256byte intros (which are demoscene productions written for DOS), on modern(-ish) computers without the need to go through the hassle of installing DOS anywhere, and without having to rely on emulators. I started with the text-based UI (pictured), and I'll also make a VGA low-res and a VESA high-res GUI mode for it later.

Image Image

Repo: https://github.com/MindlapseDemos/256boss

Author:  thumble [ Mon Jun 24, 2019 3:27 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Image

It's basic, but it's protected mode!!!

Finally picked up bootloader project after nearly 2 whole years. It feels good to be back on the metal.

Author:  SpyderTL [ Thu Jun 27, 2019 10:08 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

dseller wrote:
Not sure if I posted this already, but I've been working on some UI stuff! Yeah the BMP file is inverted, I don't really know why :(


It turns out that most BMP files are actually stored with the bottom row, left-most pixel first. At some point, this changed, and you now have to check the BMP file header to determine whether the image is flipped vertically or not. If the height field is positive, then the pixels are flipped, and stored bottom row first. If the height field is negative, then the top row is stored first. So, no, you are not crazy. The BMP file specifications are crazy.

Author:  qookie [ Fri Jun 28, 2019 4:51 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Recently, I've been contributing to some small things to Managarm. One of which include a VMWare SVGA driver. Over the past few days I, with the help of Korona, ported kmscon to Managarm.
Image

Author:  Octacone [ Sun Jun 30, 2019 1:41 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

January: "Hmm, I should really work on my OS, it shouldn't take a while", so I did
February, March: constantly working on it, hardware bugs crippling my progress (thanks to Ben for helping me out!)
Mid April: "There is no hope for this to work...", lost all my motivation + real life events
July: Here I'm
Does this ever happen to you?

Anyways,
Added a proper PATA/PATAPI driver (even works on broken hardware with bugged firmware)
Added support for MBR and GUID partitions (+ CD type partition)
Laid the foundations for my VFS framework, Windows like (uses C:, D:, A:, B: for devices)
Why did it take me 6 months to complete all that? :|

Attachments:
osupdatedev.png
osupdatedev.png [ 22.86 KiB | Viewed 8256 times ]

Author:  eekee [ Wed Jul 03, 2019 12:42 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

@ Octacone: For one thing, taking time off a project is healthy. For another, getting buggy hardware to work takes a lot more creativity than it should; you have to think your way around the problems. Ever heard of artist's block? ;)

Author:  Lionel [ Thu Jul 04, 2019 7:16 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

It's been a long while since I've posted on these forums. I started getting interested in kernels when I was 11 and while it's taken a lot of trial, error, and understanding, I think I'm ready to actually make a functioning kernel and OS again. Mostly because I'm 20.
Here's my OS running in 1024x768 using the BGA: It's not doing anything complex but I do have the GDT, IDT, and am parsing the memory map. The log and the screen are decoupled; there's a boot log renderer that actually renders the logs and is able to scroll around.
Now onto the PIT and the Physical Memory Manager. I'll keep y'all posted.
Image

Author:  zity [ Sun Jul 07, 2019 3:55 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Last year I started working on an AML interpreter and worked on this for about a month before leaving it for other projects. Recently I restarted my effort and over the last weeks I have made significant progress.

The screenshot does not really do the effort justice, but I am successfully parsing the DSDT on my workstation, evaluating the _STA/_INI methods, the _PIC method, and finally calling the _PRT method for all PCI root buses to get the interrupt routing information (on the screenshot I only print the first 10 entries).

I am really happy about the progress so far! However, I will need time to clean and improve the code before it is truly useable.

Attachments:
2019-07-07 11.38.16.jpg
2019-07-07 11.38.16.jpg [ 102.75 KiB | Viewed 7844 times ]

Author:  qookie [ Sun Jul 21, 2019 10:04 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Since the last time I posted a screenshot of quack, quite a lot has changed. First of all, I implemented x86_64 support (which now is the main architecture). I also implemented ACPI support with the help of LAI (which I also contributed some code to). The x86_64 port is still missing a lot of things the previous i386-only version had, like userspace processes etc. The port also has many improvements, like SMP, previously mentioned ACPI support, or the use of the LAPIC and IOAPIC instead of the old PIC.

Recently I implemented PCI IRQ routing with the help of LAI, as can be seen by this photo(click for full size):
Image

Here's quack running on both of my x86_64 computers(click for full size):
Image

quack of course still works in emulators/virtual machines. It successfully boots in: QEMU, Bochs (with some odd bugs), VirtualBox, VMWare.
quack running in QEMU, showing SMP, PCI enumeration, and PCI IRQ routing
Image

Author:  Thunderbirds747 [ Thu Jul 25, 2019 4:42 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

pvc wrote:
Working on 64 bit version and (@klange) usermode window manager.
Image

Looks quite impressive.

Author:  eekee [ Fri Jul 26, 2019 4:12 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

All the posts in this thread make me smile. Now I understand the work that went into each one, I recognize the feeling of accomplishment. :)

Author:  pvc [ Fri Jul 26, 2019 12:07 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

@TimothyWilliams I'm glad you like it :D

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