From b8eab1057b3a781366bf790a9d8d124cd286f55d Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Thu, 8 Jun 2023 11:11:52 -0700 Subject: [PATCH] Added links to binaries --- .build.yml | 3 ++- README.md | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.build.yml b/.build.yml index 0595d31..f079d9e 100644 --- a/.build.yml +++ b/.build.yml @@ -13,8 +13,9 @@ tasks: - build: | cd uxn11 ./build.sh --norun + mv bin ../bin - upload: | - tar -czf out.tar.gz uxn11/bin + tar -czf out.tar.gz bin acurl() { set +x curl -H "Authorization: Bearer ${OAUTH2_TOKEN}" "${@}" diff --git a/README.md b/README.md index 1d37e9d..fe8bffa 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ If you wish to build the emulator without graphics mode: gcc -Os -DNDEBUG -g0 -s src/uxn.c src/devices/system.c src/devices/file.c src/devices/datetime.c src/uxncli.c -o bin/uxncli ``` +If do not wish to build it yourself, you can download linux binaries for [uxnasm](https://rabbits.srht.site/uxn11/uxnasm), [uxncli](https://rabbits.srht.site/uxn11/uxncli) and [uxn11](https://rabbits.srht.site/uxn11/uxn11). + +[![builds.sr.ht status](https://builds.sr.ht/~rabbits/uxn11.svg)](https://builds.sr.ht/~rabbits/uxn11?) + ## Usage The first parameter is the rom file, the subsequent arguments will be accessible to the rom, via the [Console vector](https://wiki.xxiivv.com/site/varvara.html#console).