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

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

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!
��
$
```