https://github.com/slavamuravey/hwnasm
My first assembler program
https://github.com/slavamuravey/hwnasm
Last synced: 2 months ago
JSON representation
My first assembler program
- Host: GitHub
- URL: https://github.com/slavamuravey/hwnasm
- Owner: slavamuravey
- Created: 2022-02-15T07:06:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T03:59:56.000Z (over 2 years ago)
- Last Synced: 2025-01-31T23:20:27.421Z (4 months ago)
- Language: Makefile
- Homepage:
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello world assembler program
It is my first assembler program. I use NASM as an assembler.
## Prerequisites
To compile assembly code NASM assebler is required. To install it on Linux Ubuntu, please run:
```
sudo apt install nasm
```To run the program, simply run:
```
make
```To debug, run:
```
make debug
```