Page 13 of 262

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

Posted: Sun Jun 29, 2008 1:58 pm
by jal
ChazZeromus wrote:No good :(
Your searching is no good. In general, just follow the links from the main page, it'll get you there quickest.


JAL

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

Posted: Sun Jun 29, 2008 9:12 pm
by ucosty
ChazZeromus wrote:
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
http://wiki.osdev.org/VGA_Hardware

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

Posted: Sun Jun 29, 2008 9:21 pm
by ChazZeromus
ucosty wrote:
ChazZeromus wrote:
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
http://wiki.osdev.org/VGA_Hardware
Oh, I assumed it had an advance search engine. the keyword VGA should have brought me to that page anyways.

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

Posted: Sun Jun 29, 2008 9:49 pm
by Alboin
ChazZeromus wrote:Oh, I assumed it had an advance search engine. the keyword VGA should have brought me to that page anyways.
Have you used Wikipedia? The search engine on Mediawiki is inversely proportionate to the awesomeness of the OMG Ponie theme. (Meaning it is very un-awesome.)

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

Posted: Sun Jun 29, 2008 10:14 pm
by balthasar
ChazZeromus wrote: 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:

One question, what ports do you write to to move the blinky cursor around?
XD your the first person out of 60 that found that out yeah i was sleepy and didnt know what to call it :mrgreen:

and this is how you move the cursor

Code: Select all

/* Updates the hardware cursor: the little blinking line
*  on the screen under the last character pressed! */
void move_csr(void)
{
    unsigned temp;

    /* The equation for finding the index in a linear
    *  chunk of memory can be represented by:
    *  Index = [(y * width) + x] */
    temp = csr_y * 80 + csr_x;

    /* This sends a command to indicies 14 and 15 in the
    *  CRT Control Register of the VGA controller. These
    *  are the high and low bytes of the index that show
    *  where the hardware cursor is to be 'blinking'. To
    *  learn more, you should look up some VGA specific
    *  programming documents. A great start to graphics:
    *  http://www.brackeen.com/home/vga */
    outportb(0x3D4, 14);
    outportb(0x3D5, temp >> 8);
    outportb(0x3D4, 15);
    outportb(0x3D5, temp);
}

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

Posted: Sun Jun 29, 2008 10:15 pm
by balthasar
Alboin wrote:@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.
again sleepy when i wrote it :P im rewriting it today :D

And update It boots on a AMD Duron 800Mhz

Image

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

Posted: Mon Jun 30, 2008 12:15 pm
by inflater
Well, a quick screenshot of Patlock 0.0.1 pre-pre-pre alpha :D (50% is not implemented)

What to implement next: basic floppy reading/writing (FAT12 will be at Patlock 0.0.2), "about" section, suspend function (using APM), a spiral-like screensaver (a demo using mathematical coprocessor, now integrated into every CPU), reboot, poweroff and halt function and maybe more :)

No paging, no multitasking (for now). I like things simple and I'm a DOS fan ;)

Image

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

Posted: Mon Jun 30, 2008 1:45 pm
by c0x
Here's a screenshot from my OS:

Image

c0x

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

Posted: Mon Jun 30, 2008 2:02 pm
by lollynoob
Holy ****, c0x, that's awesome.

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

Posted: Mon Jun 30, 2008 2:15 pm
by Brynet-Inc
Wow.

That's all I have to say. 8)

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

Posted: Mon Jun 30, 2008 2:38 pm
by JamesM
Wow! I'm majorly envious!

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

Posted: Mon Jun 30, 2008 9:10 pm
by Dex
I agree with the others WOW, how long have you been coding it and any chance of a image to test on a real PC ?.

PS: How did you get the screen shots ?.

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

Posted: Mon Jun 30, 2008 10:23 pm
by c0x
Dex wrote:I agree with the others WOW, how long have you been coding it and any chance of a image to test on a real PC?.
I'm working on this 'project' for 3 years in my freetime. Currently there's no testable CD image because i'm rewriting the guiserver and the gui library from C to C++ :)
Dex wrote:PS: How did you get the screen shots ?.
The screenshot is created by VMware.

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

Posted: Mon Jun 30, 2008 10:59 pm
by Mr.Confuzed
What's that called?

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

Posted: Mon Jun 30, 2008 11:12 pm
by c0x
Mr.Confuzed wrote:What's that called?
What do you mean?