Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/scenent/nasm-win64-examples

Example NASM programs for 64 bit Windows.
https://github.com/scenent/nasm-win64-examples

assembly examples nasm windows

Last synced: 11 days ago
JSON representation

Example NASM programs for 64 bit Windows.

Awesome Lists containing this project

README

        

# nasm-win64-examples
> Example NASM programs for 64 bit Windows.

# Program List
1. add two number
2. bubble sort
3. count number
4. half pyramid
5. hello world
6. pyramid

## Building Environment
| NASM | 2.16.01 |
| ---- | ---- |
| MinGW (x86_64) | 13.2.0 |

## Build
```
>> nasm -f win64 filename.asm -o filename.obj
>> gcc filename.obj -o filename.exe
>> ./filename
```