filmov
tv
Hello World in Assembly in 5 Minutes (Ubuntu 20.04)
![preview_player](https://i.ytimg.com/vi/015dEE3NnZg/maxresdefault.jpg)
Показать описание
In this video we are going to install NASM( a compiler for assembly ) in Ubuntu.
We are going to Write and Run a Simple Hello World Program.
Code:
section .data
message db "Hello World", 10
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, message
mov rdx, 12
syscall
Terminal Commands:
1. sudo apt install nasm
3. cd Desktop/
5. ld first.o
Video Contents:
0:00 Introduction
0:32 Install NASM Compiler
1:58 Changing Directory
2:12 Creating Assembly File
3:47 Creating first.o file
5:17 Outro
We are going to Write and Run a Simple Hello World Program.
Code:
section .data
message db "Hello World", 10
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, message
mov rdx, 12
syscall
Terminal Commands:
1. sudo apt install nasm
3. cd Desktop/
5. ld first.o
Video Contents:
0:00 Introduction
0:32 Install NASM Compiler
1:58 Changing Directory
2:12 Creating Assembly File
3:47 Creating first.o file
5:17 Outro
x86 Assembly: Hello World!
x86 Assembly - Hello World Explained
Assembly Language in 100 Seconds
Hello World in ASSEMBLY
you can become a GIGACHAD assembly programmer in 10 minutes (try it RIGHT NOW)
You Can Learn Assembly in 10 Minutes (it’s easy)
Making ARM Assembly 'Hello World' Program in 2 Minutes
Hello, Assembly! Retrocoding the World's Smallest Windows App in x86 ASM
Blazor WebAssembly 101: Build Your First App Step-by-Step!
x86_64 Linux Assembly #1 - 'Hello, World!'
Assembly Language: 0 Hello, World - X86 (32 BIT) Arch #assembly #assemblylanguage
Python vs C/C++ vs Assembly side-by-side comparison
You Can Learn ARM Assembly Language in 15 Minutes | ARM Hello World Tutorial
emu8086 hello world Program | Assembly Language Programming
Hello World in Assembly Language | Programming | Coding #coding #programming #language
“Hello, world” from scratch on a 6502 — Part 1
RISC-V Assembly Hello World (Part 1)
Hello World in Assembly in 5 Minutes (Ubuntu 20.04)
'Hello World' on Commodore 64 in Assembly Language, Machine Code
Hello World in x86 Assembly for DOS
Hello World Speedrun [Former World Record]
Hello, Windows! RetroCoding 'Hello World' for Windows with Dave
32bit Assembly Tutorial 2 - Hello World! /w Printf
You Can Learn Assembly in 60 Seconds (its easy) #shorts
Комментарии