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

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
User avatar
piranha
Member
Member
Posts: 1391
Joined: Thu Dec 21, 2006 7:42 pm
Location: Unknown. Momentum is pretty certain, however.
Contact:

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

Post by piranha »

This topic is too young to die. Please guys post some more pictures of your OSes.
Okay. Here's something I've been working on for the past day or two:
Image

The start of some userspace debugging utilities. Many more coming!
SeaOS: Adding VT-x, networking, and ARM support
dbittman on IRC, @danielbittman on twitter
https://dbittman.github.io
pcmattman
Member
Member
Posts: 2566
Joined: Sun Jan 14, 2007 9:15 pm
Libera.chat IRC: miselin
Location: Sydney, Australia (I come from a land down under!)
Contact:

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

Post by pcmattman »

Very cool!
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

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

Post by Octacone »

piranha wrote:
This topic is too young to die. Please guys post some more pictures of your OSes.
Okay. Here's something I've been working on for the past day or two:


The start of some userspace debugging utilities. Many more coming!
Cool "little" terminal, I assume you are using some sort of print function, how did you change color of your text to purple-ish.
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
User avatar
BASICFreak
Member
Member
Posts: 284
Joined: Fri Jan 16, 2009 8:34 pm
Location: Louisiana, USA

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

Post by BASICFreak »

thehardcoreOS wrote:
piranha wrote:
This topic is too young to die. Please guys post some more pictures of your OSes.
Okay. Here's something I've been working on for the past day or two:


The start of some userspace debugging utilities. Many more coming!
Cool "little" terminal, I assume you are using some sort of print function, how did you change color of your text to purple-ish.
You have (on boot) 16 colors to choose from, and how you set the colors is very easy, http://wiki.osdev.org/Printing_to_Screen explains it all.
BOS Source Thanks to GitHub
BOS Expanded Commentary
Both under active development!
Sortie wrote:
  • Don't play the role of an operating systems developer, be one.
  • Be truly afraid of undefined [behavior].
  • Your operating system should be itself, not fight what it is.
User avatar
piranha
Member
Member
Posts: 1391
Joined: Thu Dec 21, 2006 7:42 pm
Location: Unknown. Momentum is pretty certain, however.
Contact:

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

Post by piranha »

thehardcoreOS wrote:Cool "little" terminal, I assume you are using some sort of print function, how did you change color of your text to purple-ish.
If you're asking how the colors are actually displayed on screen, then yes, that's just the regular tricks. If you're asking how the shell communicates that it wants colors, that's just bash being told to color the prompt, and it uses escape codes to tell the terminal that it wants something colored.
SeaOS: Adding VT-x, networking, and ARM support
dbittman on IRC, @danielbittman on twitter
https://dbittman.github.io
glauxosdever
Member
Member
Posts: 501
Joined: Wed Jun 17, 2015 9:40 am
Libera.chat IRC: glauxosdever
Location: Athens, Greece

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

Post by glauxosdever »

Hi!

Wow! 2000 posts! We made it so far!

Let the fun continue!

Regards,
glauxosdever
Last edited by glauxosdever on Fri Sep 30, 2016 9:33 am, edited 1 time in total.
apamment
Member
Member
Posts: 28
Joined: Thu Aug 20, 2015 9:02 pm
Contact:

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

Post by apamment »

My OS :D

I've been working on the gui most recently, something I haven't done before, quite pleased with how it's coming.

Image
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

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

Post by Octacone »

apamment wrote:My OS :D

I've been working on the gui most recently, something I haven't done before, quite pleased with how it's coming.

Image
=D> =D> =D> =D> :D :D 8) -Smileys say everything
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
DeltaDrizz
Posts: 4
Joined: Sat Jun 13, 2015 3:28 pm

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

Post by DeltaDrizz »

Its veeeery impressive what I've seen here, but where did you all learned this D:
User avatar
Artlav
Member
Member
Posts: 178
Joined: Fri Aug 21, 2009 5:54 am
Location: Moscow, Russia
Contact:

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

Post by Artlav »

DeltaDrizz wrote:but where did you all learned this D:
Once upon a time in DOS i saw a bat file.
In it were series of commands. If you press it, it would run these commands.
Meh.

But there was one bat file that asked questions - press 1 for one program, press 2 for the other.
In it was a command called choose and something about errorlevels, and it was doing something with % symbol...

That was mysterious.
A concept floated around, that i couldn't quite catch.

Then, i saw a bat file that did something miraculous - it "assigned" text to a % name, and that % name later was checked against a string.
And. it. went. different. ways. whether. it. was. the. same. or. not...!

That was The Concept.
You can make a computer do things like this!

I was 12 at the time, and it all went downhill from there...
DeltaDrizz
Posts: 4
Joined: Sat Jun 13, 2015 3:28 pm

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

Post by DeltaDrizz »

I meant all the things like drivers, GDT, IDT, IRQ, Protected Mode, and so on, where did you take the information for this?
pcmattman
Member
Member
Posts: 2566
Joined: Sun Jan 14, 2007 9:15 pm
Libera.chat IRC: miselin
Location: Sydney, Australia (I come from a land down under!)
Contact:

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

Post by pcmattman »

Most people here learned this from research (architecture reference manuals such as the Intel or AMD64 manuals, our wiki, compiler manuals, etc) and from asking questions when research falters. For things like graphics, once you have a framebuffer and details (eg, stride, pixel size, color mode) much of the coding is pretty much the same as non-OSDev graphics.

After a certain point, most of the work turns out to be basically application development anyway.

FWIW, my screenshots come after the project has existed since early 2008 :-)
Peterbjornx
Member
Member
Posts: 116
Joined: Thu May 06, 2010 4:34 am
Libera.chat IRC: peterbjornx
Location: Leiden, The Netherlands
Contact:

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

Post by Peterbjornx »

Got my OS booting from harddisk ( using an initrd ):

Image
User avatar
Roman
Member
Member
Posts: 568
Joined: Thu Mar 27, 2014 3:57 am
Location: Moscow, Russia
Contact:

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

Post by Roman »

@Peterbjornx: Do you know, that your "posnk forum thread" link points to your website at GitHub Pages?
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
User avatar
Muazzam
Member
Member
Posts: 543
Joined: Mon Jun 16, 2014 5:59 am
Location: Shahpur, Layyah, Pakistan

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

Post by Muazzam »

Roman wrote:@Peterbjornx: Do you know, that your "posnk forum thread" link points to your website at GitHub Pages?
It's just a mistake, I think. Obviously, he doesn't know.
Post Reply