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.
SoUrcerer
Posts: 11
Joined: Thu Sep 22, 2011 2:45 am

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

Post by SoUrcerer »

Image
KolibriOS+NetSurf. 20% cooler ;)
User avatar
nerdguy
Member
Member
Posts: 70
Joined: Wed Oct 30, 2013 8:11 am

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

Post by nerdguy »

Cool! Did u code it yourself? Then more Cool!
When you say, "I wrote a program that crashed Windows," people just stare at you blankly and say, "Hey, I got those with the system, for free." - Linus Torvalds
64 bit Kernel in early development
http://github.com/nerdguy12/core64
User avatar
Bender
Member
Member
Posts: 449
Joined: Wed Aug 21, 2013 3:53 am
Libera.chat IRC: bender|
Location: Asia, Singapore

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

Post by Bender »

Some useless thing I made from MikeOS :
PCGUIv2.0
Image
MAC and IP :
Image
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
User avatar
nerdguy
Member
Member
Posts: 70
Joined: Wed Oct 30, 2013 8:11 am

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

Post by nerdguy »

Yay!
I just got a keyboard handler
Next is messing with the FAT16 Hard Disk.
Image
When you say, "I wrote a program that crashed Windows," people just stare at you blankly and say, "Hey, I got those with the system, for free." - Linus Torvalds
64 bit Kernel in early development
http://github.com/nerdguy12/core64
windows8
Member
Member
Posts: 33
Joined: Sat Feb 23, 2013 3:52 am

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

Post by windows8 »

mrstobbe
Member
Member
Posts: 62
Joined: Fri Nov 08, 2013 7:40 pm

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

Post by mrstobbe »

Early boot and debug nearly done :) Testing the RTC clock source (which is why it's been running for so long) :)

Image
User avatar
BMW
Member
Member
Posts: 286
Joined: Mon Nov 05, 2012 8:31 pm
Location: New Zealand

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

Post by BMW »

Got user-mode, system calls and scheduler working! :D

Code: Select all

unsigned char TEST_BIN[] =
{
	0x55, 0x89, 0xe5, 0x83, 0xe4, 0xf0, 0x83, 0xec, 0x10, 0xc7, 0x44, 0x24,
	0x04, 0xab, 0x00, 0x00, 0x00, 0xc7, 0x04, 0x24, 0x4f, 0x10, 0x00, 0x00,
	0xe8, 0x03, 0x00, 0x00, 0x00, 0xeb, 0xfe, 0x90, 0x55, 0x89, 0xe5, 0x53,
	0x83, 0xec, 0x14, 0x8b, 0x45, 0x0c, 0x88, 0x45, 0xe8, 0x8b, 0x45, 0x08,
	0x89, 0x45, 0xf8, 0x8a, 0x45, 0xe8, 0x88, 0x45, 0xf7, 0x8d, 0x45, 0xf7,
	0x89, 0x45, 0xf0, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x5d, 0xf0, 0xcd,
	0x22, 0x83, 0xc4, 0x14, 0x5b, 0x5d, 0xc3, 0x55, 0x73, 0x65, 0x72, 0x20,
	0x6d, 0x6f, 0x64, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d,
	0x21, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
	0x01, 0x7a, 0x52, 0x00, 0x01, 0x7c, 0x08, 0x01, 0x1b, 0x0c, 0x04, 0x04,
	0x88, 0x01, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
	0x7c, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x41, 0x0e, 0x08,
	0x85, 0x02, 0x42, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
	0x00, 0x00, 0x00, 0x00, 0x01, 0x7a, 0x52, 0x00, 0x01, 0x7c, 0x08, 0x01,
	0x1b, 0x0c, 0x04, 0x04, 0x88, 0x01, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
	0x1c, 0x00, 0x00, 0x00, 0x68, 0xff, 0xff, 0xff, 0x2f, 0x00, 0x00, 0x00,
	0x00, 0x41, 0x0e, 0x08, 0x85, 0x02, 0x42, 0x0d, 0x05, 0x44, 0x83, 0x03,
	0x66, 0xc3, 0x41, 0xc5, 0x0c, 0x04, 0x04, 0x00
};

scheduler_add_process((void *)TEST_BIN, sizeof(TEST_BIN));
Image
Currently developing Lithium OS (LiOS).

Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
User avatar
Bender
Member
Member
Posts: 449
Joined: Wed Aug 21, 2013 3:53 am
Libera.chat IRC: bender|
Location: Asia, Singapore

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

Post by Bender »

My OS can run MineAssemble.
Image
@BMW
Nice!
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
User avatar
Satoshi
Member
Member
Posts: 28
Joined: Thu Sep 13, 2012 2:18 pm

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

Post by Satoshi »

Image
Trinix (written in D) https://github.com/Rikarin/Trinix
Streaming OS development https://www.livecoding.tv/satoshi/
User avatar
zhiayang
Member
Member
Posts: 368
Joined: Tue Dec 27, 2011 7:57 am
Libera.chat IRC: zhiayang

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

Post by zhiayang »

Image

Also this:
Image

Finally, some image loading!
User avatar
nerdguy
Member
Member
Posts: 70
Joined: Wed Oct 30, 2013 8:11 am

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

Post by nerdguy »

@requimrar: What resolution is that? (The first one seems to be more detailed than the second one)
Oh,
I didn't notice this,
You develop on a MAC?
So, I take back my statement which said that Macs are not good enough to do OSDev
When you say, "I wrote a program that crashed Windows," people just stare at you blankly and say, "Hey, I got those with the system, for free." - Linus Torvalds
64 bit Kernel in early development
http://github.com/nerdguy12/core64
MadZarx
Member
Member
Posts: 85
Joined: Mon Apr 01, 2013 5:06 am
Location: CMOS :D

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

Post by MadZarx »

WOW I got the graphics working after many weeks searching on forums and reading tutorials. I knew that grub is able to give me VBE info. I asked for the information in my kernel loader but nothing happened. The missing thing was that I had to load the vbe module of grub. Now its working and I can make my own GUI in a very early stage :D

Image

QEMU and VirtualBox display the same thing but on real hardware its just a blue screen :(
Anyway i got it working :D
User avatar
nerdguy
Member
Member
Posts: 70
Joined: Wed Oct 30, 2013 8:11 am

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

Post by nerdguy »

@MadZarx,
Is that a GIF, or my eyes and brain are playing tricks on me, or either my web browser is acting strangely,
try to zoom in and out, do you see that picture moving?
Also, try to view it at different angles.......
When you say, "I wrote a program that crashed Windows," people just stare at you blankly and say, "Hey, I got those with the system, for free." - Linus Torvalds
64 bit Kernel in early development
http://github.com/nerdguy12/core64
MadZarx
Member
Member
Posts: 85
Joined: Mon Apr 01, 2013 5:06 am
Location: CMOS :D

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

Post by MadZarx »

nerdguy wrote:@MadZarx,
Is that a GIF, or my eyes and brain are playing tricks on me, or either my web browser is acting strangely,
try to zoom in and out, do you see that picture moving?
Also, try to view it at different angles.......
No I just filled the video memory with 0xff (You can see the code in the picture). I'm not sure if I've filled the memory currectly. Its my first time playing with video memory (Graphics mode) directly :D
But in the terminal you can see the video memory is a negative number. I've just forgot the & sign to get the address of pointer.

But the picture is something amasing. I've just did it randomly but on a real hardware its just a blue screen :(
Last edited by MadZarx on Fri Dec 27, 2013 4:21 am, edited 1 time in total.
User avatar
zhiayang
Member
Member
Posts: 368
Joined: Tue Dec 27, 2011 7:57 am
Libera.chat IRC: zhiayang

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

Post by zhiayang »

nerdguy wrote:@requimrar: What resolution is that? (The first one seems to be more detailed than the second one)
Oh,
I didn't notice this,
You develop on a MAC?
So, I take back my statement which said that Macs are not good enough to do OSDev
The resolutions are the same, except the first image (actually the text is also an image, I don't have font rendering lol) is higher quality, the second image is a screenshot from a video (found it on tumblr)
Post Reply