Hello World in ASSEMBLY

preview_player
Показать описание
Learn how to code Hello World in the x86 Assembly programming language.
Рекомендации по теме
Комментарии
Автор

<h1> hello world in assembly </h1>

vaisakh_km
Автор

this video changed my life. My entire view of everything that exists in this world, in fact, even in the entire universe. I can never look at anything I know the same way again. This stream represents emotions that most humans could never understand. But I can. Thanks to this video I was awakened to many things previously considered unimaginable. Thank you for this exquisite video, I will never forget this experience

harshvardhanbanerjer
Автор

For those of you actually wondering, here is what it looks like in x86 architecture:


section .data
message db 'Hello, World!', 0
len equ $-message

section .text
global _start

_start:
; write system call
mov eax, 4 ; system call number (4 = write)
mov ebx, 1 ; file descriptor (1 = stdout)
mov ecx, message ; message address
mov edx, len ; message length
int 0x80 ; invoke the system call

; exit system call
mov eax, 1 ; system call number (1 = exit)
xor ebx, ebx ; exit code (0)
int 0x80 ; invoke the system call

jamx
Автор

The fact that in title Assembly as uppercase and in that code use sentence case is tingling me 💀

nopalfi
Автор

Hello World in Assembly in Python in IPython in Jupyter.

motashaiye
Автор

global main
section .data
msg db "Hello, World!", 0
section .text
main:
mov eax, 4
mov ebx, 1
mov edx, msg
mov ecx, 13
int 80h
mov eax, 1
mov ebx, 0
int 80h

_Engineer__gaming_
Автор

Not a very clever idea if you are paid hourly.

Glorin
Автор

printf("Hello World in Assembly\n");

REDHOURS
Автор

Because of this bad joke, I now want to own youtube and delete this channel from the Youtube Database.

erdemkantos
Автор

std::cout << "Hello World in Assembly" << endl;

Sown.
Автор

console.log("Hello world in assembly");

SOULvoid.
Автор

System.out.println("Hello world in assembly");

SmartMoneyA
Автор

DOSBOX + Mashine CODE: ba 08 01 b4 09 cd 21 c3 "Hello World!$"

maxmuster