Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/scenent/nasm-win64-examples
- Owner: scenent
- License: cc0-1.0
- Created: 2024-08-12T15:49:48.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-15T11:10:05.000Z (6 months ago)
- Last Synced: 2024-11-21T00:59:55.269Z (2 months ago)
- Topics: assembly, examples, nasm, windows
- Language: Assembly
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```