Page 36 of 55
Re: When your OS goes crazy - Screenshots
Posted: Fri Jul 08, 2016 6:07 am
by Octacone
Crazy BIOS!!!
Re: When your OS goes crazy - Screenshots
Posted: Fri Jul 15, 2016 5:03 am
by DeezRamChips
A cupple of fails:
when I was making the graphic driver
http://imgur.com/MhI7ws6
My OS seams to love me sooooo much (Dumping kernel in vram
)
http://imgur.com/QvbGJvy
Playing with panic(string message); (And forgot to loop the kmain
)
http://imgur.com/jQhllCB[/url]
Re: When your OS goes crazy - Screenshots
Posted: Fri Jul 15, 2016 7:29 am
by max
Hello Mr. memedev, lol
Re: When your OS goes crazy - Screenshots
Posted: Sat Jul 16, 2016 9:16 am
by Hanz
Trying to install my interrupt handler. It doesn't even get to lidt before debug-printing fails:
I'm trying to make kernel with Rust, and those are "native" error messages, but somehow I managed to mess up nearly everything...
Re: When your OS goes crazy - Screenshots
Posted: Sun Jul 24, 2016 3:31 am
by moondeck
reworking kout()
Re: When your OS goes crazy - Screenshots
Posted: Tue Jul 26, 2016 3:44 am
by Octacone
Having "fun" with my keyboard driver.
Re: When your OS goes crazy - Screenshots
Posted: Thu Aug 11, 2016 3:07 pm
by Octacone
When you don't disable your shell when switching between graphical modes...
Re: When your OS goes crazy - Screenshots
Posted: Mon Aug 15, 2016 8:07 am
by DeezRamChips
MemeDev xDDD
Re: When your OS goes crazy - Screenshots
Posted: Mon Aug 15, 2016 9:13 am
by max
DeezRamChips wrote:MemeDev xDDD
Re: When your OS goes crazy - Screenshots
Posted: Fri Aug 19, 2016 4:51 pm
by Primis
My interrupt code testing wasn't the rousing success I thought it would be...
Re: When your OS goes crazy - Screenshots
Posted: Tue Aug 23, 2016 3:28 pm
by narke
My OS dumped random RAM contents as instructions (in a wrong way).
Re: When your OS goes crazy - Screenshots
Posted: Thu Aug 25, 2016 7:42 am
by matt11235
I don't think my scrolling code is working properly.
Re: When your OS goes crazy - Screenshots
Posted: Thu Aug 25, 2016 7:47 am
by Ycep
Only thing that scrolling should do, is, to move line 2 to line 1, line 3 to line 2, ... and move line 24 to line 23. Then clear line 25 and put Console X variable to 24 and Console Y variable to 0.
Re: When your OS goes crazy - Screenshots
Posted: Sun Aug 28, 2016 12:58 pm
by onlyonemac
Lukand wrote:Then clear line 25 and put Console X variable to 24 and Console Y variable to 0.
Wrong. It's X = 0 and Y = 24. You want to go back to the beginning of the line, on the 24th line.
Re: When your OS goes crazy - Screenshots
Posted: Tue Aug 30, 2016 4:05 am
by Ycep
Whoops. Mixed X and Y.