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

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

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