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

https://github.com/justalexeydev/hellowordstartassembler

Изучение ассемблера NASM
https://github.com/justalexeydev/hellowordstartassembler

Last synced: about 1 year ago
JSON representation

Изучение ассемблера NASM

Awesome Lists containing this project

README

          

# HelloWordStartAssembler

## How run this programm?

install NASM, golink

https://www.nasm.us/
http://www.godevtool.com/#64

Run compiler
```bash
nasm -f win32 app.asm -o app.obj
```
Run linker
```bash
golink /entry:main /console app.obj kernel32.dll
```

And you can run .exe file on your directory