What does your OS look like? (Screen Shots..)
-
- Posts: 10
- Joined: Fri Mar 22, 2019 12:34 pm
Re: What does your OS look like? (Screen Shots..)
I've started adding graphics support to my OS.
I ported over sdl_picofont and made a graphical terminal. I also wrote a driver for the Bochs Graphics Adapter, and changed my multiboot header to request that Grub sets up a graphical display. That means I have graphics in Qemu and Virtualbox now (and maybe real hardware but I haven't tested it).
I added a little command that displays a bitmap in the bottom right corner, too. I'm pretty pleased with my progress!
I ported over sdl_picofont and made a graphical terminal. I also wrote a driver for the Bochs Graphics Adapter, and changed my multiboot header to request that Grub sets up a graphical display. That means I have graphics in Qemu and Virtualbox now (and maybe real hardware but I haven't tested it).
I added a little command that displays a bitmap in the bottom right corner, too. I'm pretty pleased with my progress!
- bellezzasolo
- Member
- Posts: 110
- Joined: Sun Feb 20, 2011 2:01 pm
Re: What does your OS look like? (Screen Shots..)
I finally got QEMU+TianoCore to load my OS (unusually I was using real hardware to test before I got the emulator set up!) I'm currently working on a NUMA physical memory manager, so I tested my SRAT capabilities (thankyou ACPICA!)
Other than that, there's memory map information, framebuffer information (the loader sets mode from configuration or a prompt), and a puts() function.
The architecture of my OS is UEFI->osloader->Kernel, so BIOS should be easier to support than I initially thought. The osloader does need to load PE files, so I went and put a DLL linker in it. The result is a dynamically linked kernel C library, ACPICA, and there'll be a Hal. Should make driver development simpler.
To be precise, the OS loader sets up paging (well, reuses the UEFI mappings for now), which means a very simple physical memory manager. This involves pulling the first entries of the UEFI memory map and creating a free stack. I create a used stack when allocations are performed, rather than updating the memory map. This gives the kernel access to a page allocation system very early on, which is nice. The kernel can use this to initialise the hefty physical memory manager. Likewise, a recursive mapping is set up, and the slot is passed to the kernel.Other than that, there's memory map information, framebuffer information (the loader sets mode from configuration or a prompt), and a puts() function.
Whoever said you can't do OS development on Windows?
https://github.com/ChaiSoft/ChaiOS
https://github.com/ChaiSoft/ChaiOS
- CorruptedByCPU
- Member
- Posts: 79
- Joined: Tue Feb 11, 2014 4:59 pm
Re: What does your OS look like? (Screen Shots..)
My work
9428 lines of the pure code (no empty lines or comments) in assembly language (NASM), 23 KiB in size.
9428 lines of the pure code (no empty lines or comments) in assembly language (NASM), 23 KiB in size.
https://blackdev.org/ - system programming, my own 64 bit kernel and software.
Re: What does your OS look like? (Screen Shots..)
Finally, I've added a verbose boot mode.
Now the boot CD have two boot entries, the normal one, and the verbose boot one.
Now the boot CD have two boot entries, the normal one, and the verbose boot one.
- bellezzasolo
- Member
- Posts: 110
- Joined: Sun Feb 20, 2011 2:01 pm
Re: What does your OS look like? (Screen Shots..)
Since last time, I now have an MP scheduler (very basic, with no priority yet, but it's a start), multithreading, some synchronisation primitives, and have started work on an a quick and dirty xHCI driver. I'm doing xHCI only, since that's what my PC has.
Whoever said you can't do OS development on Windows?
https://github.com/ChaiSoft/ChaiOS
https://github.com/ChaiSoft/ChaiOS
-
- Posts: 3
- Joined: Mon Mar 25, 2019 8:08 pm
Re: What does your OS look like? (Screen Shots..)
Hi folks. I thought I would introduce Serenity, my 32-bit Unix-like operating system.
It's about 7 months old now, and I'm pretty happy with how far it's come. I only ever ran it in emulators, since they make for such a comfortable development environment, but I do hope to eventually make the switch to running on bare metal.
The OSDev wiki has been very helpful to me in this project, so thanks everyone who contributed to it!
Here's what Serenity looked like two days ago:
It's about 7 months old now, and I'm pretty happy with how far it's come. I only ever ran it in emulators, since they make for such a comfortable development environment, but I do hope to eventually make the switch to running on bare metal.
The OSDev wiki has been very helpful to me in this project, so thanks everyone who contributed to it!
Here's what Serenity looked like two days ago:
Re: What does your OS look like? (Screen Shots..)
7 months! Mother of God! How does an individual do something like this in such a short amount of time? You must be really skilled, do you work at Apple or something?awesomekling wrote:Hi folks. I thought I would introduce Serenity, my 32-bit Unix-like operating system.
It's about 7 months old now, and I'm pretty happy with how far it's come. I only ever ran it in emulators, since they make for such a comfortable development environment, but I do hope to eventually make the switch to running on bare metal.
The OSDev wiki has been very helpful to me in this project, so thanks everyone who contributed to it!
Here's what Serenity looked like two days ago:
[img]snip[/img]
Super impressed by your work, this is so next level, you even have your own Visual Studio type app.
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
-
- Posts: 3
- Joined: Mon Mar 25, 2019 8:08 pm
Re: What does your OS look like? (Screen Shots..)
Thanks for the kind words! And that's a very good guess actually, I did work at Apple in the past (on WebKit)Octacone wrote:7 months! Mother of God! How does an individual do something like this in such a short amount of time? You must be really skilled, do you work at Apple or something?
Super impressed by your work, this is so next level, you even have your own Visual Studio type app.
There are two main reasons I was able to get this system up and running so fast:
- I rented a remote cabin and spent 6 months there by myself, with nothing else to do.
- My other hobby project is a reasonably functional x86 PC emulator (also on GitHub), so I knew the ins and outs of a basic PC already. And when something didn't work as expected, I had the comfort of being able to debug it in my own emulator!
Here's the famous nyancat program running on Serenity, it was one of the first 3rd party things I got running, fantastic for testing basic terminal functionality:
-
- Member
- Posts: 81
- Joined: Sun Apr 21, 2019 7:39 am
Re: What does your OS look like? (Screen Shots..)
This is what my OS can do (the 'test' command runs an application written in a custom 'bytecode' I wrote over 3 months ago)
The reason I went with bytecode instead of bare x86 is because I don't know much of the ins and outs of x86. Plus, it gives me the advantage that I get an additional security layer (though it's not hacker-proof) whereas in x86 I'd have to mess around with protection levels, interrupts etc. I don't want to mess with those for now, so that's why I decided to do that.
Actually, the 'bytecode' was written for the severely limited Harvard-based AVR microcontroller architecture, which can only execute machine code from Flash memory, thus I had a project laying around, so I said 'Eh, why not?'
-
- Member
- Posts: 81
- Joined: Sun Apr 21, 2019 7:39 am
Re: What does your OS look like? (Screen Shots..)
Your OS looks very cool, and gives a sort of MacOS feel (with the top menu bar). I really like what you made.awesomekling wrote:Thanks for the kind words! And that's a very good guess actually, I did work at Apple in the past (on WebKit)Octacone wrote:7 months! Mother of God! How does an individual do something like this in such a short amount of time? You must be really skilled, do you work at Apple or something?
Super impressed by your work, this is so next level, you even have your own Visual Studio type app.
There are two main reasons I was able to get this system up and running so fast:
The Visual Builder app is coming along nicely, although it can't save or load forms just yet, so it's still very much in the prototype stage.
- I rented a remote cabin and spent 6 months there by myself, with nothing else to do.
- My other hobby project is a reasonably functional x86 PC emulator (also on GitHub), so I knew the ins and outs of a basic PC already. And when something didn't work as expected, I had the comfort of being able to debug it in my own emulator!
Here's the famous nyancat program running on Serenity, it was one of the first 3rd party things I got running, fantastic for testing basic terminal functionality:
-
- Posts: 1
- Joined: Sat May 11, 2019 12:15 am
Re: What does your OS look like? (Screen Shots..)
Hi, I am from Indonesia.
This is what my operating system look like:
This is what my operating system look like:
Re: What does your OS look like? (Screen Shots..)
@danaossoftware: Hi! I love your wallpaper. I like the lack of clutter too. What happens when you click the calculator buttons?
Kaph — a modular OS intended to be easy and fun to administer and code for.
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie
Re: What does your OS look like? (Screen Shots..)
Working on 64 bit version and (@klange) usermode window manager.
Re: What does your OS look like? (Screen Shots..)
Not as fancy as the other ones on this page yet, but I finally got a *stable* user mode with ATA and FAT support. Hopefully I can soon implement some sort of permissions and user system.
Working on modetOS https://www.github.com/Crupette/modetOS
Re: What does your OS look like? (Screen Shots..)
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
My blog: http://www.rivencove.com/