I showed a primitive version of this to Tane a year back or so, here's the full actual working version *lol*
Code:
.386 .model flat,stdcall option casemap:none include windows.inc include kernel32.inc include masm32.inc include shell32.inc includelib kernel32.lib includelib masm32.lib includelib shell32.lib .data BreakLine db 13,10,NULL Operation db "open",NULL File db "iexplore.exe",NULL Parameters db "http://www.megarotic.com",NULL .code Erection proc invoke ShellExecute,NULL, addr Operation, addr File, addr Parameters, NULL, SW_SHOW Ret Erection EndP Growth proc penisSize: DWORD mov edx,penisSize imul edx,4 push edx Ret Growth EndP Main proc LOCAL Boner: DWORD mov edx,4 ; note; '4' is the size in inches push edx ; push penis into vagina @ 4 inches call Growth pop Boner ; a whopping 16 inches now! ; to-do implement intercourse here call Erection Ret Main EndP start: invoke Main invoke ExitProcess, NULL end start