Page 18 of 55

Re: When your OS goes crazy - Screenshots

Posted: Thu Jun 13, 2013 4:35 am
by sortie
I did some work on my editor, implementing copy-and-paste and other fun stuff. I also tried to implement a soft 80-character margin because I like to keep my lines shorter than that. Something went horribly wrong.

https://cs.au.dk/~sortie/sortix/crazy-o ... ng-bug.png [1920x1080 resolution]

Looks like I negated the is-there-a-valid-character-to-render and invoked lots of undefined behavior combined with buffer overflowing reads.

Re: When your OS goes crazy - Screenshots

Posted: Tue Jun 18, 2013 3:06 pm
by technix
finarfin wrote:Nothing special,

only a bug in echo, but nice effect :)
You put arguments in a wrong way.

Re: When your OS goes crazy - Screenshots

Posted: Thu Jul 04, 2013 6:32 am
by MadZarx
This was a very dumb mistake in increasing a pointer. I defined char* as _pch and declared a _pch var to use as a printable string. each time I needed to increase it but i forgot to put that * before increasing the pointer and it was always printing random characters and it was created an infinit loop I guess!!

Re: When your OS goes crazy - Screenshots

Posted: Fri Jul 12, 2013 5:39 pm
by sortie
I attempted to make my OSMesa port compile some nice GLSL shaders, which resulted in a major explosion of debug output.

Image

Time to fix printf.

Re: When your OS goes crazy - Screenshots

Posted: Fri Jul 26, 2013 6:51 am
by pcmattman
I have some exciting issues (that I still don't fully understand) that cause fun rendering glitches, but only in QEMU. VMware is fine.

Image

Re: When your OS goes crazy - Screenshots

Posted: Fri Jul 26, 2013 8:57 pm
by FallenAvatar
pcmattman wrote:I have some exciting issues (that I still don't fully understand) that cause fun rendering glitches, but only in QEMU. VMware is fine.

{img removed}
My eyes!

Re: When your OS goes crazy - Screenshots

Posted: Sat Jul 27, 2013 2:16 am
by AJ
Looks like a very fine-grained random dot stereogram :)

Re: When your OS goes crazy - Screenshots

Posted: Thu Aug 22, 2013 5:23 am
by nbdd0121
It seems I can't do anything bad in userspace... Even though I didn't acheive neither a system call nor memory management, I got my OS protection work.
Image

Re: When your OS goes crazy - Screenshots

Posted: Thu Sep 05, 2013 7:36 pm
by phillid
Just a couple of things which happened recently...

Re: When your OS goes crazy - Screenshots

Posted: Sat Sep 07, 2013 7:19 pm
by riparoony
Finally got to a point where I can print fabulous error screens like you guys:

Image

Re: When your OS goes crazy - Screenshots

Posted: Sat Sep 14, 2013 12:42 pm
by Gigasoft
When trying to get things to work in VirtualBox, the FAT driver tried to update the last access date for a file on an apparently write protected disk (presumably because the image file was already mounted in ImDisk). Selecting the drive letter that the file is mounted to instead of the file itself doesn't help either, but the error message becomes slightly different.

Image

Re: When your OS goes crazy - Screenshots

Posted: Sun Sep 15, 2013 6:15 am
by Bender
When my BOOT16.DLL goes missing...............
[LOL]
8)
Image

Re: When your OS goes crazy - Screenshots

Posted: Sun Nov 03, 2013 9:14 am
by nerdguy
My description :D

Re: When your OS goes crazy - Screenshots

Posted: Sat Nov 09, 2013 3:55 pm
by kutkloon7
Changed something in the bootloader which caused half of my data to go missing :P

For some reason, this didn't cause total havoc, but it did cause my calls to clearScreen to stop working. So there's some stuff from the bootloader still hanging in the background. That error was created on purpose, to test my interrupt handling.

Image

This is how it should look:
Image

I don't really understand what was going on, but it's fixed now :)

Re: When your OS goes crazy - Screenshots

Posted: Fri Nov 15, 2013 11:08 pm
by tristanseifert
Image
Writing to a framebuffer and incrementing the pointer wrong… that's fun, I guess?