Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moh3a/dyn
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/moh3a/dyn
- Owner: moh3a
- Created: 2023-07-03T18:46:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T13:00:49.000Z (12 months ago)
- Last Synced: 2024-01-19T14:24:59.254Z (12 months ago)
- Language: Rust
- Homepage:
- Size: 1010 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```