OSDev.org

The Place to Start for Operating System Developers
It is currently Thu Mar 28, 2024 2:32 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 809 posts ]  Go to page Previous  1 ... 6, 7, 8, 9, 10, 11, 12 ... 54  Next
Author Message
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Sat Jun 18, 2011 1:00 pm 
Offline
Member
Member

Joined: Tue Oct 17, 2006 10:21 pm
Posts: 38
Location: Hampshire, UK
Forgot to switch to graphics mode before writing to the VBE framebuffer.


Attachments:
vga-vbe.png
vga-vbe.png [ 11 KiB | Viewed 6580 times ]
Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Wed Jun 29, 2011 9:21 pm 
Offline

Joined: Mon Jun 27, 2011 3:34 pm
Posts: 10
Tried to debug why VGA wasn't working. Forgot to remove the drawing statements.
Image

_________________
Sorry Linker, but your function is in another file!


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Thu Jun 30, 2011 5:07 pm 
Offline
Member
Member
User avatar

Joined: Fri Jul 16, 2010 2:16 pm
Posts: 117
Location: California
First time my os crashed, big one too!
I was testing normal - c code and I forgot that doing puts(i); Prints that location in memory, so I dumped my kernel into console memory. Then think it dumped GRUB into console memory.
Code:
for(false)
{
   puts(i);
   i++;
}

Image
Image

_________________
Cedille - Toy kernel


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Mon Sep 05, 2011 5:17 am 
Offline
Member
Member

Joined: Thu May 28, 2009 11:46 pm
Posts: 68
I don't know if this counts as 'crazy', but for some reason the console default color messed up and now text is showing up pink, unless I specify another color.

Attachment:
pinktext.png
pinktext.png [ 56.44 KiB | Viewed 5925 times ]

_________________
Tibi,
Currently working on the Lux Operating System


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Mon Sep 05, 2011 8:49 am 
Offline
Member
Member

Joined: Wed Oct 31, 2007 9:09 am
Posts: 1385
chibicitiberiu wrote:
I don't know if this counts as 'crazy', but for some reason the console default color messed up and now text is showing up pink, unless I specify another color.


Hehe, cute. Please let us know what caused this, once you find it.


JAL


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Mon Sep 05, 2011 11:55 pm 
Offline
Member
Member

Joined: Thu May 28, 2009 11:46 pm
Posts: 68
I suspect it's the Log() function, which is very similar to printf... to print colored text, it changes the default color, and then it restores it at the end... for some reason the restore part goes wrong...

Update: Apparently, that was the problem... A few minor edits, and everything seems to work now.

_________________
Tibi,
Currently working on the Lux Operating System


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Tue Sep 06, 2011 12:09 am 
Offline
Member
Member
User avatar

Joined: Sat Jul 17, 2010 12:45 am
Posts: 487
Lionel wrote:
Image
That looks like a language on a different planet.

_________________
Programming is not about using a language to solve a problem, it's about using logic to find a solution !


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Tue Sep 06, 2011 9:07 am 
Offline
Member
Member

Joined: Sun Jun 20, 2010 1:21 pm
Posts: 127
Tried to enable paging; apparently the kernel loved that!
I think I copied the page tables into graphics memory somehow... hehe lets try again :)


Attachments:
Screenshot-2.gif
Screenshot-2.gif [ 86.58 KiB | Viewed 5831 times ]
Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Fri Sep 23, 2011 1:41 pm 
Offline
Member
Member

Joined: Sat Oct 16, 2010 3:38 pm
Posts: 587
My OS does not like polish diactrics (UTF-8). Probably coz it's ina VGA console :)


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Sat Sep 24, 2011 2:08 am 
Offline
Member
Member

Joined: Wed Jul 25, 2007 8:45 am
Posts: 391
Location: London, UK
It seems I've broken rendering in 16-bit colour modes...


Attachments:
Screen Shot 2011-09-24 at 09.05.15.png
Screen Shot 2011-09-24 at 09.05.15.png [ 120.42 KiB | Viewed 5577 times ]

_________________
http://alex-smith.me.uk
Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Sat Sep 24, 2011 11:24 am 
Offline
Member
Member
User avatar

Joined: Tue Oct 17, 2006 9:29 pm
Posts: 2426
Location: Canada
xyzzy wrote:
It seems I've broken rendering in 16-bit colour modes...

Trippy. Successful acid trip simulator.

_________________
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Sun Sep 25, 2011 3:46 am 
Offline
Member
Member

Joined: Wed Jul 25, 2007 8:45 am
Posts: 391
Location: London, UK
Turns out it's actually a bug with QEMU's Cocoa frontend, it works fine anywhere else :P

_________________
http://alex-smith.me.uk


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Mon Oct 17, 2011 4:44 pm 
Offline

Joined: Sun Jul 05, 2009 4:01 pm
Posts: 14
I was testing my BMP File reader and got this output :P

On the right - Bochs running my OS
On the left - the original image i was trying to output


Image


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Thu Oct 20, 2011 4:19 am 
Offline
Member
Member

Joined: Sun Sep 18, 2011 10:18 am
Posts: 46
This crash is from the 2005: http://www.durlej.net/sys/crash.png.


Top
 Profile  
 
 Post subject: Re: When your OS goes crazy - Screenshots
PostPosted: Thu Oct 20, 2011 5:11 am 
Offline
Member
Member

Joined: Wed Oct 31, 2007 9:09 am
Posts: 1385
acek wrote:
This crash is from the 2005: http://www.durlej.net/sys/crash.png.


And what did you make post it today, if I may ask?


JAL


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 809 posts ]  Go to page Previous  1 ... 6, 7, 8, 9, 10, 11, 12 ... 54  Next

All times are UTC - 6 hours


Who is online

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