Page 42 of 55

Re: When your OS goes crazy - Screenshots

Posted: Fri Dec 30, 2016 9:51 am
by Octacone
This is what happens when I want to do anything GUI related.

Re: When your OS goes crazy - Screenshots

Posted: Mon Jan 02, 2017 7:50 am
by NunoLava1998
octacone wrote:This is what happens when I want to do anything GUI related.
Read a bit more of your books and the wiki and you should be able to get it working.

Re: When your OS goes crazy - Screenshots

Posted: Mon Jan 02, 2017 10:58 am
by Octacone
NunoLava1998 wrote:
octacone wrote:This is what happens when I want to do anything GUI related.
Read a bit more of your books and the wiki and you should be able to get it working.
alexfru wrote: Perhaps, you should follow your own advice?:
NunoLava1998 wrote: Read a bit more of your books and the wiki and you should be able to get it working.

Re: When your OS goes crazy - Screenshots

Posted: Mon Jan 16, 2017 1:33 pm
by zesterer
I think it's fair to say I have issues with kernel multi-tasking. Specifically, garbage code execution. Hmmm.
Screenshot_2017-01-16_19-31-14.png

Re: When your OS goes crazy - Screenshots

Posted: Mon Jan 16, 2017 5:12 pm
by SpyderTL
zesterer wrote:I think it's fair to say I have issues with kernel multi-tasking. Specifically, garbage code execution. Hmmm.
Screenshot_2017-01-16_19-31-14.png
Ahh, my old nemesis.... Three lines and an "S".

You probably already know this, but just in case you don't, that's what you get when you dump a null pointer to the screen as ASCII. So I'm going to guess that you're passing a null to your PrintString function...

Re: When your OS goes crazy - Screenshots

Posted: Tue Jan 17, 2017 3:30 am
by zesterer
SpyderTL wrote:
zesterer wrote:I think it's fair to say I have issues with kernel multi-tasking. Specifically, garbage code execution. Hmmm.
Screenshot_2017-01-16_19-31-14.png
Ahh, my old nemesis.... Three lines and an "S".

You probably already know this, but just in case you don't, that's what you get when you dump a null pointer to the screen as ASCII. So I'm going to guess that you're passing a null to your PrintString function...
Oh really? Interesting. I have no idea what causes it. After that screenshot, the kernel crashes with an invalid instruction.

Re: When your OS goes crazy - Screenshots

Posted: Fri Jan 20, 2017 2:46 am
by osdever
octacone wrote:This is what happens when I want to do anything GUI related.
This is why I wrote about Surface. You can easily make a GUI with it :)

Re: When your OS goes crazy - Screenshots

Posted: Mon Jan 23, 2017 6:20 am
by MajickTek
I want to see this "Surface"! Sounds interesting.

Re: When your OS goes crazy - Screenshots

Posted: Mon Jan 23, 2017 6:22 am
by MajickTek
Nevermind! I found it on gitlab.

Re: When your OS goes crazy - Screenshots

Posted: Thu Jan 26, 2017 4:54 am
by Agola
Multitasking screwed something up :shock:

Image

Re: When your OS goes crazy - Screenshots

Posted: Thu Jan 26, 2017 6:19 am
by onlyonemac
zesterer wrote:I think it's fair to say I have issues with kernel multi-tasking. Specifically, garbage code execution. Hmmm.
Garbage code execution? Is that a thing?

Re: When your OS goes crazy - Screenshots

Posted: Thu Jan 26, 2017 6:25 am
by MDenham
onlyonemac wrote:
zesterer wrote:I think it's fair to say I have issues with kernel multi-tasking. Specifically, garbage code execution. Hmmm.
Garbage code execution? Is that a thing?
Yep, otherwise colloquially known as "jumping to hyperspace" at times. It's less likely to happen if you're writing a 64-bit or 32-bit-plus-PAE OS (the NX bit covers most situations, as pretty much nobody here is producing something that has enough of a user base to make it worthwhile for attacks to require an ASLR implementation as well), but that's not going to prevent you from accidentally jumping to existing code at an inopportune time. :)

Re: When your OS goes crazy - Screenshots

Posted: Tue Jan 31, 2017 6:57 pm
by zesterer
Screenshot_2017-02-01_00-55-17.png
Screenshot_2017-02-01_00-55-17.png (10.48 KiB) Viewed 5310 times
Giving VBE graphics a go. I'm writing a PSF font to the screen, but something's up with my alpha blending :D

Re: When your OS goes crazy - Screenshots

Posted: Wed Feb 01, 2017 4:11 am
by dozniak
zesterer wrote: I'm writing a PSF font to the screen, but something's up with my alpha blending :D
Looks very Hotline Miami-sh!

Re: When your OS goes crazy - Screenshots

Posted: Sat Feb 04, 2017 3:52 am
by robbiedobbie
Image

I was working on getting my VGA logging to scroll faster (By finally using a backbuffer...).

I guess I have my offsets wrong somewhere...

PS: This is actually the weirdest of rendering artifacts I have yet encountered on my os. Never had those flashy full screen corruptions...