OSDev.org

The Place to Start for Operating System Developers
It is currently Wed Apr 24, 2024 7:55 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 61, 62, 63, 64, 65, 66, 67 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Dec 21, 2010 4:46 pm 
Offline
Member
Member
User avatar

Joined: Wed Dec 08, 2010 3:16 am
Posts: 144
Location: St. Louis, MO USA
rootnode wrote:
I should add that the Kernel is written in C#. So it's still a very experimental thing and bugs can occur.


i wasn't even aware that you could compile something in C# that can run without the Windows API! i haven't really used it, but that surprises me. how do you go about writing a kernel in C#??


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Dec 21, 2010 5:54 pm 
Offline
Member
Member
User avatar

Joined: Fri Feb 29, 2008 11:21 am
Posts: 42
Location: Aachen, Germany
miker00lz wrote:
rootnode wrote:
I should add that the Kernel is written in C#. So it's still a very experimental thing and bugs can occur.


i wasn't even aware that you could compile something in C# that can run without the Windows API! i haven't really used it, but that surprises me. how do you go about writing a kernel in C#??


Normally you can't compile C# to anything that can run without the windows API or mono runtime. But we're writing our own compiler to AOT C# code to machine code. We're then booting the kernel and the plan is to later, as soon as we're capable to compile the compiler with itself, we'll use the compiler as a VM to run drivers and applications. So the compiler is able to run as an AOT and JIT at the same time.

_________________
Project: MOSA Framework


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Dec 21, 2010 11:36 pm 
Offline
Member
Member
User avatar

Joined: Thu Dec 21, 2006 7:42 pm
Posts: 1391
Location: Unknown. Momentum is pretty certain, however.
Big moment for me, I finally got pcc working on my OS! Basically, I am waaayyy too happy. I already had ld, as, newlib, etc ported, so I put the appropriate file on the hd image, and gave it a shot (actually, many shots to work out a couple bugs):

Image

-JL

_________________
SeaOS: Adding VT-x, networking, and ARM support
dbittman on IRC, @danielbittman on twitter
https://dbittman.github.io


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Dec 22, 2010 12:38 am 
Offline
Member
Member

Joined: Fri Aug 01, 2008 7:52 am
Posts: 248
Kevin wrote:
Synon wrote:
I really like the borders, how did you do that?

Have a look at the Codepage 437 character set, and I'm sure you'll figure out. ;)

http://en.wikipedia.org/wiki/Box-drawing_characters is more to the point, I'd say.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Dec 22, 2010 2:22 am 
Offline
Member
Member
User avatar

Joined: Wed Dec 08, 2010 3:16 am
Posts: 144
Location: St. Louis, MO USA
piranha wrote:
Big moment for me, I finally got pcc working on my OS! Basically, I am waaayyy too happy. I already had ld, as, newlib, etc ported, so I put the appropriate file on the hd image, and gave it a shot (actually, many shots to work out a couple bugs):

<screenshot cut out>

-JL


VERY nice! that looks sweet, good job. :)


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Dec 22, 2010 2:30 am 
Offline
Member
Member
User avatar

Joined: Wed Dec 08, 2010 3:16 am
Posts: 144
Location: St. Louis, MO USA
rootnode wrote:
miker00lz wrote:
rootnode wrote:
I should add that the Kernel is written in C#. So it's still a very experimental thing and bugs can occur.


i wasn't even aware that you could compile something in C# that can run without the Windows API! i haven't really used it, but that surprises me. how do you go about writing a kernel in C#??


Normally you can't compile C# to anything that can run without the windows API or mono runtime. But we're writing our own compiler to AOT C# code to machine code. We're then booting the kernel and the plan is to later, as soon as we're capable to compile the compiler with itself, we'll use the compiler as a VM to run drivers and applications. So the compiler is able to run as an AOT and JIT at the same time.


that's pretty interesting, and good job. must be the first C# kernel ever. =D>

if you ever decide to release the source to your compiler alone, a lot of people would love that.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Dec 22, 2010 3:32 am 
Offline
Member
Member
User avatar

Joined: Fri Feb 29, 2008 11:21 am
Posts: 42
Location: Aachen, Germany
miker00lz wrote:
that's pretty interesting, and good job. must be the first C# kernel ever. =D>

if you ever decide to release the source to your compiler alone, a lot of people would love that.


In fact, it's not :D There [is/was] SharpOS, EnsembleOS, CosmOS. All with the same goal, but all lacking a decent compiler to do so. So we created the MOSA Project to provide all projects with a common basis.

The source to our compiler is open, released and it's standalone. Our main repository is here https://github.com/mosa/MOSA-Project and the website can be found in my signature. You can find the compiler in Mosa.Tools.Compiler, which is based on Mosa.Runtime.CompilerFramework and Mosa.Platform.x86

_________________
Project: MOSA Framework


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Dec 22, 2010 3:31 pm 
Offline
Member
Member

Joined: Wed Nov 10, 2010 10:49 am
Posts: 109
Hi everyone;
my name is Mohamed Elghamry.
I have 14 years old.
And i am developing an operating system that is name is Genius Horizon OS.
Here is some screen shots:
Image
Image
Image
Image
--------------
http://mohamedsalah96.web.officelive.com


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Dec 23, 2010 8:36 am 
Offline
Member
Member

Joined: Sun Jun 20, 2010 1:21 pm
Posts: 127
Nice Mozo! One thing I have to ask though, on that first screeny you posted, is that a progress bar, or just a pretty graphic? Otherwise, very well done, and loving the green!


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Dec 23, 2010 10:39 am 
Offline
Member
Member
User avatar

Joined: Thu Nov 16, 2006 12:01 pm
Posts: 7614
Location: Germany
piranha wrote:
Big moment for me, I finally got pcc working on my OS!


Does that mean you're self-hosting? =D>

In my eyes the point where you don't need another OS to continue development is what seperates the men from the boys. Or rather, the "I did" from the "I tried".

_________________
Every good solution is obvious once you've found it.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Dec 23, 2010 1:45 pm 
Offline
Member
Member
User avatar

Joined: Thu Dec 21, 2006 7:42 pm
Posts: 1391
Location: Unknown. Momentum is pretty certain, however.
Solar wrote:
Does that mean you're self-hosting? =D>


Once I port nasm, make, bash, tar, and get pcc to compile my kernel (I don't know if it will), then yes it would seem very very close. Porting nasm doesn't seem too hard, nor does make. I need to have termios in place for bash I believe, and I don't know anything about tar. But yes, self-hosting is within sight! :D

-JL

_________________
SeaOS: Adding VT-x, networking, and ARM support
dbittman on IRC, @danielbittman on twitter
https://dbittman.github.io


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Dec 23, 2010 5:33 pm 
Offline
Member
Member

Joined: Sun Sep 06, 2009 3:54 am
Posts: 169
Location: Brighton, United Kingdom
I started again from scratch.
Image

The name is just a portmanteau of Saxon and OS; because it's an OS and I'm of Anglo-Saxon heritage.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Dec 24, 2010 2:17 am 
Offline
Member
Member
User avatar

Joined: Mon Jan 26, 2009 2:48 am
Posts: 792
piranha wrote:
But yes, self-hosting is within sight! :D
Congratulations! I guess I'll be a boy forever...


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Dec 24, 2010 4:18 am 
Offline

Joined: Mon Nov 29, 2010 1:21 am
Posts: 19
Location: Anchorage, AK
I found some Christmas themed VT100 files so I whipped up a quick emulator and set a 1ms delay for each byte displayed. The animation is actually pretty good minus a few issues due to my hacktastic VT100 emulation.

http://www.vt100.net/animation/

Attachment:
Untitled.jpg
Untitled.jpg [ 68 KiB | Viewed 5941 times ]

Attachment:
Untitled2.jpg
Untitled2.jpg [ 17.74 KiB | Viewed 5939 times ]


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Dec 25, 2010 12:43 pm 
Offline
Member
Member
User avatar

Joined: Thu Jun 04, 2009 5:01 pm
Posts: 168
Why is a santa with three eyes giving me the finger?

_________________
Valix is an experiment in an interpreted userspace with object-oriented and functional design patterns. Developers needed! Join #valix on irc.freenode.net


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 61, 62, 63, 64, 65, 66, 67 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: No registered users and 225 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group