Skip to content

An experiment to play TIS-100 levels with real assembly.

Notifications You must be signed in to change notification settings

sennavanhoek/ARM-TIS-100

Repository files navigation

ARM-TIS-100

An experiment to play TIS-100 levels with real assembly.
You can read more about it in this blogpost.

Non AArch64 Linux setup

You will need the following packages:
qemu-user
gcc-aarch64-linux-gnu
binutils-aarch64-linux-gnu
With the following commands you can compile and run the levels:
export QEMU_LD_PREFIX=/usr/aarch64-linux-gnu
aarch64-linux-gnu-as asm.s -o asm.o
aarch64-linux-gnu-gcc level.c asm.o -o level
./level

AArch64 Android setup

Install the termux app
You will need the following packages:
clang
binutils
With the following commands you can compile and run the levels:
as asm.s -o asm.o
clang level.c asm.o -o level
./level

About

An experiment to play TIS-100 levels with real assembly.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published