Page 12 of 262

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

Posted: Mon Jun 23, 2008 5:36 pm
by ChazZeromus
I keep thinking the window around the emulation is the person's OS!
I admit, I was very discouraged at first! :mrgreen:

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

Posted: Mon Jun 23, 2008 9:36 pm
by piranha
Well, I created a new shell, mo-bettah lookin'
Image

I didn't wanna mess with the kernel, so I made changes to the shell.

-JL

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

Posted: Tue Jun 24, 2008 4:11 am
by lukem95
I havn't worked on my GUI for a while, i've been doing mainly file format stuff and a bit of my driver interface (all connected y'see) but i thought i'd update this thread anyway.

Focus changing with my PS/2 mouse :)

Image
Image

edit: forgot IMG tags :oops:

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

Posted: Fri Jun 27, 2008 10:49 pm
by balthasar
Thought to show my updated status of my os :)

Image

It dont have off kernel execution yet so i cant launch my command line :cry: hope to get help on that soon

But its 12KB lol

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

Posted: Sat Jun 28, 2008 5:02 am
by Brynet-Inc
:lol: Not yet implanted? close.. but not quite, implemented. :)

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

Posted: Sat Jun 28, 2008 6:02 pm
by balthasar
Brynet-Inc wrote::lol: Not yet implanted? close.. but not quite, implemented. :)
heh yeah i noticed the spelling error too :lol: i fixed it in 1A952

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

Posted: Sat Jun 28, 2008 6:57 pm
by Alboin
@balthasar: The first sentence on your site, the last part: "but redone to be less erroriness", doesn't sound 'favorable' to you. A better ending would be "but redone to be more stable and error free."

Just thought I'd add that while we were on the subject.

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

Posted: Sat Jun 28, 2008 9:53 pm
by 01000101
yay a screenshot of DiNS 1.0C (in development still).
[edit]I changed some configurations shortly after taking that picture. I lowered the tick rate so that the values aren't so high. For example, the printf function now reports 9 ticks and the pci enumeration takes 644 ticks.[/edit]

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

Posted: Sun Jun 29, 2008 4:18 am
by finarfin
This is my os (DreamOS :D)

written totally from scratch (actually there aren't useful commands, the cli was only for test scanf and similar functions).
Image

Actually I'm working on memory manager, very slowly (because my free time is near to 0 ^_^).

P.S. sorry for my bad english ^_^

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

Posted: Sun Jun 29, 2008 4:42 am
by JamesM
Ah! It must have been your SSL certificate that my client complained about and blocked.

Should probably host it on non-secure hosting...

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

Posted: Sun Jun 29, 2008 7:10 am
by ChazZeromus
balthasar wrote:Thought to show my updated status of my os :)

It dont have off kernel execution yet so i cant launch my command line :cry: hope to get help on that soon

But its 12KB lol
GASP? You watched Elfien Lied!? That's a good show! It's a shame almost everyone died in the end! Oh, psh NYU OS, lol.

Anyways here's my lame one, it's gonna get better sooner or later:
Image
It's sucks I know...

One question, what ports do you write to to move the blinky cursor around?

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

Posted: Sun Jun 29, 2008 10:40 am
by piranha
One question, what ports do you write to to move the blinky cursor around?

Code: Select all

static void move_cursor()
{
	unsigned short cursorLocation = cursor_y * screen_wid + cursor_x; //screen_wid is usually 80
	outb(0x3D4, 14);                  // Tell the VGA board we are setting the high cursor byte.
	outb(0x3D5, cursorLocation >> 8); // Send the high cursor byte.
	outb(0x3D4, 15);                  // Tell the VGA board we are setting the low cursor byte.
	outb(0x3D5, cursorLocation);      // Send the low cursor byte.
}
NOTE: It will make printing to screen slightly slower...

-JL

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

Posted: Sun Jun 29, 2008 12:24 pm
by ChazZeromus
piranha wrote:
One question, what ports do you write to to move the blinky cursor around?

Code: Select all

static void move_cursor()
{
	unsigned short cursorLocation = cursor_y * screen_wid + cursor_x; //screen_wid is usually 80
	outb(0x3D4, 14);                  // Tell the VGA board we are setting the high cursor byte.
	outb(0x3D5, cursorLocation >> 8); // Send the high cursor byte.
	outb(0x3D4, 15);                  // Tell the VGA board we are setting the low cursor byte.
	outb(0x3D5, cursorLocation);      // Send the low cursor byte.
}
NOTE: It will make printing to screen slightly slower...

-JL
Thanks, is there a VGA specification that tells me all the commands? I've tried google but I keep getting the circuitry specification.

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

Posted: Sun Jun 29, 2008 12:35 pm
by JamesM
Yes there is. See the wiki. Have you checked the wiki? You should check the wiki.

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

Posted: Sun Jun 29, 2008 1:27 pm
by ChazZeromus
JamesM wrote:Yes there is. See the wiki. Have you checked the wiki? You should check the wiki.
No good :(
http://wiki.osdev.org/Special:Search?search=VGA&go=Go