https://github.com/justalexeydev/hellowordstartassembler
Изучение ассемблера NASM
https://github.com/justalexeydev/hellowordstartassembler
Last synced: about 1 year ago
JSON representation
Изучение ассемблера NASM
- Host: GitHub
- URL: https://github.com/justalexeydev/hellowordstartassembler
- Owner: JustAlexeyDev
- Created: 2024-09-16T00:08:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-16T00:12:16.000Z (over 1 year ago)
- Last Synced: 2025-02-14T19:53:15.539Z (over 1 year ago)
- Language: Assembly
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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