Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/moh3a/dyn


https://github.com/moh3a/dyn

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

# dyn

algorithms and some other ramdom stuff

## run hello world in assembly

- install the assembler/linker

```sh
sudo apt install gcc
```

- run assembly

```sh
as asem.s -o asem.o
```

- run the linker

```sh
gcc -o asem asem.o -nostdlib -static
```

- execute the program

```sh
./asem
```