OSDev.org

The Place to Start for Operating System Developers
It is currently Mon Mar 18, 2024 10:48 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 65, 66, 67, 68, 69, 70, 71 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Apr 24, 2011 11:15 am 
Offline

Joined: Sun Apr 24, 2011 10:51 am
Posts: 13
Hi there, I'm new!
I'm Claudio (from Italy) and this is my os, Echoes (exokernel-like kernel is named Tempera):

Image
Image

actually, colors shown are from here: http://en.wikipedia.org/wiki/List_of_Crayola_crayon_colors

features:
- written in C++
- multiboot2 (1.6 spec) support
- 1024x768x32 framebuffer console (charset is mine too, ASCII from 0x20 to 0x7E, it taken so many time...)

next step: write a physical memory manager

descriptor tables and interrupts code is a modified version of the james'm tutorials one (thanks James ;-))

---
NB: Sorry, my english is not perfect, if I make some mistake please tell me.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Apr 24, 2011 12:48 pm 
Offline
Member
Member
User avatar

Joined: Fri Mar 07, 2008 5:36 pm
Posts: 2111
Location: Bucharest, Romania
pcmattman wrote:
I just managed to get a (very basic!) IPv6 implementation going


That's so awesome :mrgreen: (green with envy)

_________________
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Apr 24, 2011 6:17 pm 
Offline

Joined: Sun Apr 24, 2011 6:05 pm
Posts: 4
This is a couple week's worth of work on a 64-bit OS.

It's loaded in two stages from GRUB 1 - a 32-bit stub sets up some initial kernel data structures, and the kernel itself is a flat binary loaded as a module by grub. Right now the initial usermode code is also a flat binary loaded as a module, but hopefully that will go away sooner rather than later, and be replaced by the kernel loading the init process from the filesystem.

At this point, the kernel gets its paging in order, sets up keyboard input and some simple interrupt handling, and kicks down to ring 3 for the user process - which at the moment simply makes two system calls: one to print the message and one to halt the system.

Next things on my TODO list are to move keyboard input/text output into a more abstract file handling setup, so they can be treated as STDIN and STDOUT, and also to setup a process model so init can fork itself into an actual program. Fixing the whole file thing will also let me start dumping the kernel log out to the emulated serial port, so the main screen can be used purely for program interaction.

EDIT: So I still haven't fixed input/output to use files yet, but I have gotten fork and task switching working!


Attachments:
64boss_2.png
64boss_2.png [ 35.56 KiB | Viewed 12637 times ]
64boss_1.png
64boss_1.png [ 28.99 KiB | Viewed 12732 times ]
Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Apr 28, 2011 11:39 am 
Offline
Member
Member
User avatar

Joined: Fri Jan 14, 2011 7:24 pm
Posts: 67
I'm trying to fix somethings, but I've got boot screens (which I find cool, but ¥eah)


This one's of the pre-alpha boot screen in 90x60 text mode, before I realized that Dell video cards have problems with it.
[simg]http://casnix.sourceforge.net/pre-alpha-boot-screen.png[/simg


So I moved onto alpha and also added a VGA mode called Dell_pc which is really 80x50 mode.
[simg]http://casnix.sourceforge.net/alpha1.0-VGAMODEisDell_pc-boot.png[/simg]



Strangely enough, my video driver doesn't work with 80x25 text mode....:][]

EDIT: Is there a way to make my pictures smaller?

_________________
You are a computer.
~ MCS ~


Last edited by casnix on Sun May 01, 2011 10:36 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Apr 28, 2011 3:33 pm 
Offline
Member
Member
User avatar

Joined: Wed Oct 18, 2006 3:45 am
Posts: 9301
Location: On the balcony, where I can actually keep 1½m distance
Quote:
EDIT: Is there a way to make my pictures smaller?
How about not enlarging them in the first place? They should be 720x480 in 90x60 text...

That and I can't imagine that you don't know how mspaint or gimp works :roll:

_________________
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun May 01, 2011 10:35 pm 
Offline
Member
Member
User avatar

Joined: Fri Jan 14, 2011 7:24 pm
Posts: 67
Combuster wrote:
Quote:
EDIT: Is there a way to make my pictures smaller?
How about not enlarging them in the first place? They should be 720x480 in 90x60 text...

That and I can't imagine that you don't know how mspaint or gimp works :roll:



Heh I'm on a mac, so no paint software. Will get gimp, though. My screen is 1024x1024 and my vmachine is full screen. But yeah shoulda thought about gimp

_________________
You are a computer.
~ MCS ~


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun May 01, 2011 10:56 pm 
Offline
Member
Member

Joined: Fri Aug 01, 2008 7:52 am
Posts: 248
casnix wrote:
Combuster wrote:
Quote:
EDIT: Is there a way to make my pictures smaller?
How about not enlarging them in the first place? They should be 720x480 in 90x60 text...

That and I can't imagine that you don't know how mspaint or gimp works :roll:



Heh I'm on a mac, so no paint software. Will get gimp, though. My screen is 1024x1024 and my vmachine is full screen. But yeah shoulda thought about gimp

I usually leave the emulator/window I need to capture and just choose to make a screenshot of the window without borders instead of the fullscreen. That's with KScreenshot, but I'm not sure on the mac (google found me this: http://guides.macrumors.com/Taking_Scre ... n_Mac_OS_X ).


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon May 02, 2011 2:46 am 
Offline
Member
Member
User avatar

Joined: Tue Feb 08, 2011 1:58 pm
Posts: 496
casnix wrote:
I'm on a mac, so no paint software.

Wtf? You can crop and resize images with Preview that's shipped with your Mac...


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri May 13, 2011 6:37 pm 
Offline
User avatar

Joined: Mon May 09, 2011 8:24 pm
Posts: 7
Location: Philippines
:twisted: I present to you my Small OS, The Black Box Operating System! :twisted:

This one below is taken from the desktop by pressing the Screenshot button on the Emulator/Virtual PC:
Image

And this one below is taken from my desktop while running Black Box OS on a Emulator/Virtual PC:
Image


I'm still deciding if i'm going to release it as a open-source operating system and yes, this is the Small OS i'm talking about which took 3 years of my life to finish :D

_________________
openBOX - A hybrid cloud OS


Last edited by gamefreak11221 on Fri May 13, 2011 8:38 pm, edited 2 times in total.

Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri May 13, 2011 6:52 pm 
Offline
Member
Member

Joined: Sat Jun 12, 2010 9:04 pm
Posts: 56
Location: Somewhere else.
gamefreak11221 wrote:
:twisted: I present to you my Small OS, The Black Box Operating System!


Nice job, I doubt I'll ever be able to get something even remotely similar to a GUI (laziness :D )

_________________
Wait... What?


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri May 13, 2011 6:52 pm 
Offline
Member
Member
User avatar

Joined: Tue Mar 24, 2009 8:11 pm
Posts: 1249
Location: Sunnyvale, California
@gamefreak11221: That looks really cool; do you have any shots of it running applications? Or maybe a disk image?


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri May 13, 2011 6:58 pm 
Offline
User avatar

Joined: Mon May 09, 2011 8:24 pm
Posts: 7
Location: Philippines
As you can see it has no Applications on the desktop because it can't run any kind of applications installed by users, it requires them to be related to the OS own custom programming language called the Box Assembly i made for it, also its suppose to be a Programmers OS :twisted:

Anyway, thanks for the comments! Also i forgot to make a clock for the taskbar xD

EDIT:
I'm working on some basic apps for BBOS

_________________
openBOX - A hybrid cloud OS


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat May 14, 2011 11:09 am 
Offline
Member
Member

Joined: Thu Feb 26, 2009 1:45 am
Posts: 38
gamefreak11221 wrote:
I present to you my Small OS, The Black Box Operating System!

Nice look :) although you seem to have forgotten to put links to the real screenshots, so here they are for the lazy ones among us… :

Image

Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat May 14, 2011 6:20 pm 
Offline
User avatar

Joined: Mon May 09, 2011 8:24 pm
Posts: 7
Location: Philippines
Haha! Thanks for the help :D

_________________
openBOX - A hybrid cloud OS


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed May 18, 2011 9:38 pm 
Offline

Joined: Sun May 15, 2011 2:43 pm
Posts: 7
My OS is such a success.
Image

... It's literally a downloaded IMG (that I made into an ISO) and source from osdever.net, for testing, so it's not really my OS. With all of these compiling problems, and testing problems... I think Apple and Microsoft sold me broken computers because they are scared of me taking over the world. =P


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 65, 66, 67, 68, 69, 70, 71 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot], Google [Bot] and 12 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