https://github.com/admodev/assembly-hello-world
Hello world in Assembly.
https://github.com/admodev/assembly-hello-world
Last synced: 11 months ago
JSON representation
Hello world in Assembly.
- Host: GitHub
- URL: https://github.com/admodev/assembly-hello-world
- Owner: admodev
- Created: 2023-07-15T02:45:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-15T02:45:50.000Z (almost 3 years ago)
- Last Synced: 2025-04-25T05:48:36.094Z (about 1 year ago)
- Language: Assembly
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello, World! in Assembly.
Compilation:
```bash
as asem.s -o asem.o
```
```bash
gcc -o asem asem.o -nostdlib -static
```