An open API service indexing awesome lists of open source software.

https://github.com/admodev/x86-assembly-hello-world

Hello, World! Program made with x86 ASM, Linux compatible.
https://github.com/admodev/x86-assembly-hello-world

Last synced: 10 months ago
JSON representation

Hello, World! Program made with x86 ASM, Linux compatible.

Awesome Lists containing this project

README

          

# x86 Assembly Hello World

```bash
nasm -f elf64 hello_world.asm
```

``bash
ld -s -o hello_world hello_world.o
```