https://github.com/ilyakurdyukov/hello-asm
Hello World examples in assembly, for use as templates.
https://github.com/ilyakurdyukov/hello-asm
assembly examples helloworld templates
Last synced: 8 months ago
JSON representation
Hello World examples in assembly, for use as templates.
- Host: GitHub
- URL: https://github.com/ilyakurdyukov/hello-asm
- Owner: ilyakurdyukov
- Created: 2022-08-25T14:56:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-28T11:17:01.000Z (over 2 years ago)
- Last Synced: 2023-11-28T12:29:15.691Z (over 2 years ago)
- Topics: assembly, examples, helloworld, templates
- Language: Assembly
- Homepage:
- Size: 20.5 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Hello World examples in assembly
These examples include executable file headers to avoid bloat by linker.
See the comments for build instructions.
### Linux
[x86 (gnu as)](linux_x86.s)
[x86_64 (gnu as)](linux_x86_64.s)
[arm (gnu as)](linux_arm.S)
[aarch64 (gnu as)](linux_aarch64.S)
[e2k_32 (gnu as)](linux_e2k_32.S)
[e2k_64 (gnu as)](linux_e2k_64.S)
[e2k_128 (gnu as)](linux_e2k_128.S)
[loongarch64 (gnu as)](linux_loongarch64.S)
[x86 (nasm)](linux_x86.asm)
[x86_64 (nasm)](linux_x86_64.asm)
### Windows
[x86 (nasm)](windows_x86.asm)
[x86_64 (nasm)](windows_x86_64.asm)