https://github.com/linuxthor/asmbonsai
Small (73 byte) 64 bit Linux assembly hello world
https://github.com/linuxthor/asmbonsai
assembly-language elf elf-binaries linux-assembly
Last synced: 5 months ago
JSON representation
Small (73 byte) 64 bit Linux assembly hello world
- Host: GitHub
- URL: https://github.com/linuxthor/asmbonsai
- Owner: linuxthor
- Created: 2016-01-11T10:10:47.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-25T09:24:36.000Z (about 2 years ago)
- Last Synced: 2025-06-03T17:32:04.712Z (9 months ago)
- Topics: assembly-language, elf, elf-binaries, linux-assembly
- Language: Assembly
- Homepage:
- Size: 26.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# asmbonsai
Small x86-64 bit Linux assembly hello world
Compiles to a 73 byte Linux ELF binary
Assemble with:
```
nasm -f bin -o asmbonsai asmbonsai.asm
```
Run:
```
$ chmod +x asmbonsai
$ ./asmbonsai
Hello, world!
$
```
(BUG: Unfortunately latest versions will print a few extra characters if not run under tmux)
```
$ ./asmbonsai
����Hello, world!
��
$
```