Ooooo yazilimci
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
; messagebox.asm
section .data
mesaj db "Naber Çokgen", 0
baslik db "Mesaj Kutusu", 0
section .text
global _start
extern MessageBoxA
extern ExitProcess
_start:
push 0 ; MB_OK
push baslik ; başlık
push mesaj ; mesaj
push 0 ; hWnd = NULL
call MessageBoxA ; MessageBoxA(NULL, mesaj, baslik, MB_OK)
push 0 ; çıkış kodu
call ExitProcess ; ExitProcess(0)

Tepkiler: haz3root