What does your OS look like? (Screen Shots..)
Re: What does your OS look like? (Screen Shots..)
KolibriOS+NetSurf. 20% cooler
Re: What does your OS look like? (Screen Shots..)
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
64 bit Kernel in early development
http://github.com/nerdguy12/core64
- Bender
- 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..)
Some useless thing I made from MikeOS :
PCGUIv2.0
MAC and IP :
PCGUIv2.0
MAC and IP :
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
(R3X Runtime VM)(CHIP8 Interpreter OS)
Re: What does your OS look like? (Screen Shots..)
Yay!
I just got a keyboard handler
Next is messing with the FAT16 Hard Disk.
I just got a keyboard handler
Next is messing with the FAT16 Hard Disk.
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
64 bit Kernel in early development
http://github.com/nerdguy12/core64
Re: What does your OS look like? (Screen Shots..)
Early boot and debug nearly done Testing the RTC clock source (which is why it's been running for so long)
Re: What does your OS look like? (Screen Shots..)
Got user-mode, system calls and scheduler working!
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));
Currently developing Lithium OS (LiOS).
Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
Recursive paging saves lives.
"I want to change the world, but they won't give me the source code."
- Bender
- 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..)
My OS can run MineAssemble.
@BMW
Nice!
@BMW
Nice!
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
(R3X Runtime VM)(CHIP8 Interpreter OS)
Re: What does your OS look like? (Screen Shots..)
Trinix (written in D) https://github.com/Rikarin/Trinix
Streaming OS development https://www.livecoding.tv/satoshi/
Streaming OS development https://www.livecoding.tv/satoshi/
Re: What does your OS look like? (Screen Shots..)
Also this:
Finally, some image loading!
[nx] kernel: http://github.com/zhiayang/nx
Re: What does your OS look like? (Screen Shots..)
@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
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
64 bit Kernel in early development
http://github.com/nerdguy12/core64
Re: What does your OS look like? (Screen Shots..)
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
QEMU and VirtualBox display the same thing but on real hardware its just a blue screen
Anyway i got it working
QEMU and VirtualBox display the same thing but on real hardware its just a blue screen
Anyway i got it working
Re: What does your OS look like? (Screen Shots..)
@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.......
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
64 bit Kernel in early development
http://github.com/nerdguy12/core64
Re: What does your OS look like? (Screen Shots..)
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) directlynerdguy 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.......
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.
Re: What does your OS look like? (Screen Shots..)
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)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
[nx] kernel: http://github.com/zhiayang/nx