๐Ÿ’ฅCrashMaker 95 โ€” CRASH.EXE
File
Edit
Build
Crash
Help
Crash Configuration
Serious Fault
crash.asm (preview)
; CRASH.EXE โ€” target: Windows 95
.code
start:
    mov  eax, 5
    xor  ebx, ebx
    div  ebx            ; <-- divide by zero (0xC0000094)
    mov  eax, 0DEADBEEFh
    mov  ebx, [eax]      ; <-- invalid page fault (0xC0000005)
    ret                  ; (unreachable, obviously)
end start
โ–ธ Build the EXE first, then Run it to witness the catastrophe.
Not built.Programs crashed: 0
๐Ÿ’ฅ CrashMaker 95
๐Ÿ”‡