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.
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

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

Post 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
User avatar
ucosty
Member
Member
Posts: 271
Joined: Tue Aug 08, 2006 7:43 am
Location: Sydney, Australia

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

Post 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
The cake is a lie | rackbits.com
User avatar
ChazZeromus
Member
Member
Posts: 61
Joined: Sun Jun 22, 2008 4:09 pm

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

Post 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.
Image
User avatar
Alboin
Member
Member
Posts: 1466
Joined: Thu Jan 04, 2007 3:29 pm
Location: Noricum and Pannonia

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

Post 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.)
C8H10N4O2 | #446691 | Trust the nodes.
User avatar
balthasar
Member
Member
Posts: 30
Joined: Mon Mar 31, 2008 8:39 pm
Contact:

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

Post 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);
}
Last edited by balthasar on Mon Jun 30, 2008 2:19 am, edited 1 time in total.
My OS: NasuTek Ensemble http://code.google.com/p/ensemble/
User avatar
balthasar
Member
Member
Posts: 30
Joined: Mon Mar 31, 2008 8:39 pm
Contact:

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

Post 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
My OS: NasuTek Ensemble http://code.google.com/p/ensemble/
User avatar
inflater
Member
Member
Posts: 1309
Joined: Thu Sep 28, 2006 10:32 am
Location: Slovakia
Contact:

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

Post 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
My web site: http://inflater.wz.cz (Slovak)
Derrick operating system: http://derrick.xf.cz (Slovak and English :P)
c0x
Member
Member
Posts: 26
Joined: Sun Apr 20, 2008 2:16 am

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

Post by c0x »

Here's a screenshot from my OS:

Image

c0x
User avatar
lollynoob
Member
Member
Posts: 150
Joined: Sun Oct 14, 2007 11:49 am

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

Post by lollynoob »

Holy ****, c0x, that's awesome.
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 »

Wow.

That's all I have to say. 8)
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

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

Post by JamesM »

Wow! I'm majorly envious!
User avatar
Dex
Member
Member
Posts: 1444
Joined: Fri Jan 27, 2006 12:00 am
Contact:

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

Post 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 ?.
c0x
Member
Member
Posts: 26
Joined: Sun Apr 20, 2008 2:16 am

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

Post 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.
Mr.Confuzed
Posts: 20
Joined: Fri Nov 24, 2006 10:55 pm
Location: C eh, N eh, D eh

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

Post by Mr.Confuzed »

What's that called?
*WARNING* -- Automatic logout enabled. Save drafts frequently or risk data loss! -- *WARNING*
c0x
Member
Member
Posts: 26
Joined: Sun Apr 20, 2008 2:16 am

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

Post by c0x »

Mr.Confuzed wrote:What's that called?
What do you mean?
Post Reply