The MASM Forum

Miscellaneous => The Orphanage => Topic started by: Magnum on August 10, 2013, 02:50:14 AM

Title: Song Sung Blue
Post by: Magnum on August 10, 2013, 02:50:14 AM
I understand the mov commands but how does this make windows "Blue."  :biggrin:


16:     DbgPrint("Some western classical music in the background with rodeo guns blazing.\n");
    17:     _asm
    18:     {
    19:         mov eax,0
>   20:         mov [eax],0
    21:     }
    22:     return STATUS_SUCCESS; // What the compiler knows we arent returning ever.
    23: }


Title: Re: Song Sung Blue
Post by: dedndave on August 10, 2013, 04:43:49 AM
that code doesn't turn the screen blue - lol

it does, however, generate an exception
on windows versions older than, say, win 2000, exceptions may have resulted in a BSOD
Title: Re: Song Sung Blue
Post by: Magnum on August 10, 2013, 05:44:09 AM
Dave,

For security purposes I did not include all the source.  :t

Andy