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
max
Member
Member
Posts: 616
Joined: Mon Mar 05, 2012 11:23 am
Libera.chat IRC: maxdev
Location: Germany
Contact:

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

Post by max »

bace wrote:Hi! First post here.
I've been working on a bootloader for around two weeks, and I've begun work on a kernel. It's not much against everyone else's operating systems, but it's a start :D
It's called "Calcium", and the screenshot shows a simple hello world message.
It's important for the bones! :mrgreen:
Welcome to the community, have a nice time here. :)
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

bace wrote:Hi! First post here.
I've been working on a bootloader for around two weeks, and I've begun work on a kernel. It's not much against everyone else's operating systems, but it's a start :D
It's called "Calcium", and the screenshot shows a simple hello world message.
Everyone starts simple! :)
What language are you writing in? And is it 32 bit or 16 bit?
You know your OS is advanced when you stop using the Intel programming guide as a reference.
User avatar
bace
Member
Member
Posts: 34
Joined: Fri Jan 16, 2015 10:41 am
Location: United Kingdom

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

Post by bace »

omarrx024 wrote: Everyone starts simple! :)
What language are you writing in? And is it 32 bit or 16 bit?
It's C in 32 bit mode, but my bootloader can load 64 bit ELFs. I want to get things working in 32 bit first, just so I can concentrate on the basics. :)
"for example, turning off the system’s power through the movement of a large red switch" - the Advanced Configuration and Power Interface Specification
SayedMohsen64
Posts: 16
Joined: Mon Jan 26, 2015 2:56 am

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

Post by SayedMohsen64 »

I have renamed my OS from Neon to Star. :D
I got the IDT, IRQs and PIT timer working! I know it's nothing compared to what's around, but I'm pretty proud of myself. :oops:
Written entirely by me in assembly language.
I aim for something like Kolibri OS (I know it's not going to happen, I just wish.) :(
Attachments
timer working.PNG
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

SayedMohsen64 wrote:I aim for something like Kolibri OS (I know it's not going to happen, I just wish.) :(
If you lose hope like this, you won't succeed. Keep your hopes high and work hard, and you will succeed!
PS: It's nice to know I'm not the only one who is so jealous of Kolibri OS and Menuet OS too. :mrgreen:
You know your OS is advanced when you stop using the Intel programming guide as a reference.
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

First program for my new GUI -- System Information!
Here it is, demonstrating the new CPUID! :)
Attachments
cpuid.png
You know your OS is advanced when you stop using the Intel programming guide as a reference.
User avatar
bace
Member
Member
Posts: 34
Joined: Fri Jan 16, 2015 10:41 am
Location: United Kingdom

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

Post by bace »

omarrx024 wrote:First program for my new GUI -- System Information!
Here it is, demonstrating the new CPUID! :)
Nice GUI! What graphics mode are you using?
"for example, turning off the system’s power through the movement of a large red switch" - the Advanced Configuration and Power Interface Specification
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

bace wrote:
omarrx024 wrote:First program for my new GUI -- System Information!
Here it is, demonstrating the new CPUID! :)
Nice GUI! What graphics mode are you using?
Thanks! It's actually a really simple VGA Mode 0x12. :)
You know your OS is advanced when you stop using the Intel programming guide as a reference.
Techel
Member
Member
Posts: 215
Joined: Fri Jan 30, 2015 4:57 pm
Location: Germany
Contact:

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

Post by Techel »

It looks like Windows 8 :mrgreen:
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

Roflo wrote:It looks like Windows 8 :mrgreen:
Not good, I've been aiming for it to look like Windows 3 :mrgreen:
You know your OS is advanced when you stop using the Intel programming guide as a reference.
Kevin
Member
Member
Posts: 1071
Joined: Sun Feb 01, 2009 6:11 am
Location: Germany
Contact:

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

Post by Kevin »

I wouldn't have recognised Windows 8 in it, but it's most definitely not like Windows 3.x. For that your button is too flat, and the window border had no 3D effect at all. In fact, I think the border was grey and only the window title blue.

But perhaps having your own look isn't that bad after all. ;)
Developer of tyndur - community OS of Lowlevel (German)
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

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

Post by BrightLight »

Kevin wrote:But perhaps having your own look isn't that bad after all. ;)
Well, I guess it isn't so bad. :)
You know your OS is advanced when you stop using the Intel programming guide as a reference.
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 »

This again isn't really impressive when it comes to output :), but there's a lot going under the hood.

A couple of days ago, I ported a TinyBASIC compiler to my Virtual Machine, I've been experimenting with it since then, I've managed to extend the language a little bit, (adding while loops, operators, etc.), and today I managed to be able to run the code on the VM.

Here's a little Fibonacci generator written in my "extended" dialect of TinyBASIC:

Code: Select all

REM Fibonacci generator
LET I = 1
LET X = 1
LET Y = 0
WHILE I <= 10
 
        PRINT "FIB: "; I, X
 
        LET Z = X
        LET X = X + Y
        LET Y = Z
       
        LET I = I + 1
 
ENDW
ASM ".data \{ mystr : db 'Thank You!', 0 \}"
ASM "push mystr"
ASM "syscall SYSCALL_PUTS"
END
And oh, the screenshot:

Image
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
Techel
Member
Member
Posts: 215
Joined: Fri Jan 30, 2015 4:57 pm
Location: Germany
Contact:

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

Post by Techel »

Yeah, now my little OS can read HardDisks and Partitions :D
Image
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

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

Post by Brynet-Inc »

It's always nice when people take pictures instead of exclusively testing in emulators. Real hardware is important.
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
Post Reply