When your OS goes crazy - Screenshots
Re: When your OS goes crazy - Screenshots
here is what happens when I boot with a multiboot image of my OS with grub. I think it is related to the bios function (int 10h, ax = 1110h) that I call to load my graphic character definition I must not return properly to the real mode because it crashed on another machine
may need to learn how to "read" this new kind of character
may need to learn how to "read" this new kind of character
-
- Member
- Posts: 81
- Joined: Sun Apr 21, 2019 7:39 am
Re: When your OS goes crazy - Screenshots
When I switch video modes but forget about redrawing everything to adapt to the new resolution... Gets me every time.
Re: When your OS goes crazy - Screenshots
Yeah. You want a wrapper function which runs the mode switch & sends redraw messages or whatever.
Kaph — a modular OS intended to be easy and fun to administer and code for.
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie
Re: When your OS goes crazy - Screenshots
https://github.com/GreenteaOS (My OS compatible with Windows .exe)
GreenteaOS Telegram News & Chat
GreenteaOS Discord
GreenteaOS Telegram News & Chat
GreenteaOS Discord
Re: When your OS goes crazy - Screenshots
Totally screwed up my framebuffer scrolling in console
- 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
Not supposed to look like that obviously
- DavidCooper
- Member
- Posts: 1150
- Joined: Wed Oct 27, 2010 4:53 pm
- Location: Scotland
Re: When your OS goes crazy - Screenshots
That's one of the best programming accidents I've seen: you should sell the design to a tile manufacturer, perhaps after experimenting with adjusting the contrast a bit.
Help the people of Laos by liking - https://www.facebook.com/TheSBInitiative/?ref=py_c
MSB-OS: http://www.magicschoolbook.com/computing/os-project - direct machine code programming
MSB-OS: http://www.magicschoolbook.com/computing/os-project - direct machine code programming
- 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
Hahaha indeed, I'd enjoy it in my bathroomDavidCooper wrote:That's one of the best programming accidents I've seen: you should sell the design to a tile manufacturer, perhaps after experimenting with adjusting the contrast a bit.
Re: When your OS goes crazy - Screenshots
This one was kind of funny...
- Attachments
-
- font_bug.png (6.68 KiB) Viewed 14322 times
Re: When your OS goes crazy - Screenshots
Yeah, um, that's not quite how you spell it, I think...
Re: When your OS goes crazy - Screenshots
The öuiFk Rroên fox ump√ over the lщzy log
Go home Font, you're drunk.
Go home Font, you're drunk.
Re: When your OS goes crazy - Screenshots
I'm in the middle of rewriting some core printing functions, and I accidentally broke my text scrolling function. I thought the result looked funny!
(I haven't been on this forum in years, I was super young when I was fascinated with this hobby, and now I'm actually developing my own! It's exhilarating)
(I haven't been on this forum in years, I was super young when I was fascinated with this hobby, and now I'm actually developing my own! It's exhilarating)
KoiOS: https://github.com/GabrielRRussell/KoiOS
Code: Select all
#define CURRENT_YEAR 2014 // Change this each year!
Re: When your OS goes crazy - Screenshots
The definition of undefined behavior, accidentally putting the top of your stack into %rsp instead of the bottom and constantly being in a stack overflow. This took me forever to debug. Not a super crazy looking breakage but it displayed the panic image slightly corrupted without any of the panic debug info.