Added links to binaries
This commit is contained in:
parent
94972ed7da
commit
b8eab1057b
|
@ -13,8 +13,9 @@ tasks:
|
||||||
- build: |
|
- build: |
|
||||||
cd uxn11
|
cd uxn11
|
||||||
./build.sh --norun
|
./build.sh --norun
|
||||||
|
mv bin ../bin
|
||||||
- upload: |
|
- upload: |
|
||||||
tar -czf out.tar.gz uxn11/bin
|
tar -czf out.tar.gz bin
|
||||||
acurl() {
|
acurl() {
|
||||||
set +x
|
set +x
|
||||||
curl -H "Authorization: Bearer ${OAUTH2_TOKEN}" "${@}"
|
curl -H "Authorization: Bearer ${OAUTH2_TOKEN}" "${@}"
|
||||||
|
|
|
@ -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
|
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
|
## 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).
|
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).
|
||||||
|
|
Loading…
Reference in New Issue