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

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.

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)