Assembly – Hello World – Variation 2

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Check Prime Number ; eddiejackson.net/blog ; 3/10/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; hello2.asm ; ; COMPILE ; nasm -fwin64 hello2.asm && gcc -o hello2.exe Read More …

Assembly – Check Prime Number

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Check Prime Number ; eddiejackson.net/blog ; 3/9/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; prime.asm ; ; COMPILE ; nasm -fwin64 prime.asm && gcc -o prime.exe Read More …

Assembly – GUI Message Box

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Assembly Message Box ; eddiejackson.net/blog ; 3/9/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; hello_gui.asm ; ; COMPILE ; nasm -fwin64 hello_gui.asm && gcc -o hello_gui.exe Read More …