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.
- Host: GitHub
- URL: https://github.com/admodev/x86-assembly-hello-world
- Owner: admodev
- Created: 2023-01-25T15:25:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T15:25:35.000Z (over 3 years ago)
- Last Synced: 2025-04-06T12:06:42.222Z (about 1 year ago)
- Language: Assembly
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```