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

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.

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
```