HelloWorld in x86 and x64 Assembly Language - 202X

Описание к видео HelloWorld in x86 and x64 Assembly Language - 202X

This is a video in which I show how to write Hello World in x86 and x64 Assembly Language.

Below are the commands used in the video:

Install vscode

https://go.microsoft.com/fwlink/?Link...

sudo apt install ./code*.deb

Mandatory:

sudo apt-get install g++-multilib libc6-dev-i386 gdb

sudo apt-get install manpages manpages-dev

nasm -f elf32 -o HelloWorldx86.o HelloWorldx86.nasm

ld -m elf_i386 -o HelloWorldx86 HelloWorldx86.o

Check Status : echo $?

nasm -f elf64 -o HelloWorldx64.o HelloWorldx64.nasm

ld -o HelloWorldx64 HelloWorldx64.o

Header files.
unistd_32.h
unistd_64.h


Malware Analysis Course Link: https://courses.null-char.com/courses...

Academy Link: https://ask-academy.live/

Please provide feedback in the comments.

To continue the conversation hit me up on twitter:

🐦 Twitter -   / nu11charb  

Комментарии

Информация по комментариям в разработке