When your OS goes crazy - Screenshots
Re: When your OS goes crazy - Screenshots
Crazy BIOS!!!
- Attachments
-
- crazyOS.png (4.59 KiB) Viewed 6118 times
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
- DeezRamChips
- Member
- Posts: 132
- Joined: Fri Apr 08, 2016 5:03 am
- Location: atapio.cpp - why won't you work :(
- Contact:
Re: When your OS goes crazy - Screenshots
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]
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]
My github page: https://github.com/AlexandreRouma
Meme-deving since 420 Bc !
YouTube: https://www.youtube.com/channel/UCyJnOD ... C8Y7pccc6A
Twitter: https://twitter.com/WhatsTheGeekYT
Meme-deving since 420 Bc !
YouTube: https://www.youtube.com/channel/UCyJnOD ... C8Y7pccc6A
Twitter: https://twitter.com/WhatsTheGeekYT
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: When your OS goes crazy - Screenshots
Hello Mr. memedev, lolDeezRamChips wrote: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
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...
I'm trying to make kernel with Rust, and those are "native" error messages, but somehow I managed to mess up nearly everything...
- moondeck
- Member
- Posts: 56
- Joined: Sat Dec 19, 2015 12:18 pm
- Libera.chat IRC: moondeck
- Location: The Zone, Chernobyl
Re: When your OS goes crazy - Screenshots
reworking kout()
My operating system https://github.com/moondeck/hydrogen/
Re: When your OS goes crazy - Screenshots
Having "fun" with my keyboard driver.
Last edited by Octacone on Mon Aug 15, 2016 7:12 am, edited 1 time in total.
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
Re: When your OS goes crazy - Screenshots
When you don't disable your shell when switching between graphical modes...
- Attachments
-
- VGABug.png (7.13 KiB) Viewed 5386 times
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
- DeezRamChips
- Member
- Posts: 132
- Joined: Fri Apr 08, 2016 5:03 am
- Location: atapio.cpp - why won't you work :(
- Contact:
Re: When your OS goes crazy - Screenshots
MemeDev xDDD
My github page: https://github.com/AlexandreRouma
Meme-deving since 420 Bc !
YouTube: https://www.youtube.com/channel/UCyJnOD ... C8Y7pccc6A
Twitter: https://twitter.com/WhatsTheGeekYT
Meme-deving since 420 Bc !
YouTube: https://www.youtube.com/channel/UCyJnOD ... C8Y7pccc6A
Twitter: https://twitter.com/WhatsTheGeekYT
- Primis
- Member
- Posts: 62
- Joined: Fri May 14, 2010 3:46 pm
- Libera.chat IRC: Primis
- Location: New York, NY
- Contact:
Re: When your OS goes crazy - Screenshots
My interrupt code testing wasn't the rousing success I thought it would be...
Re: When your OS goes crazy - Screenshots
My OS dumped random RAM contents as instructions (in a wrong way).
OS for PowerPC Macs: https://github.com/narke/Einherjar
Operating system: colorForth computing environment for x86.: https://github.com/narke/Roentgenium
Operating system: colorForth computing environment for x86.: https://github.com/narke/Roentgenium
Re: When your OS goes crazy - Screenshots
I don't think my scrolling code is working properly.
com.sun.java.swing.plaf.nimbus.InternalFrameInternalFrameTitlePaneInternalFrameTitlePaneMaximizeButtonWindowNotFocusedState
Compiler Development Forum
Compiler Development Forum
Re: When your OS goes crazy - Screenshots
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.
-
- Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: When your OS goes crazy - Screenshots
Wrong. It's X = 0 and Y = 24. You want to go back to the beginning of the line, on the 24th line.Lukand wrote:Then clear line 25 and put Console X variable to 24 and Console Y variable to 0.
When you start writing an OS you do the minimum possible to get the x86 processor in a usable state, then you try to get as far away from it as possible.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Re: When your OS goes crazy - Screenshots
Whoops. Mixed X and Y.