Added labels to tests.tal
(README) Removed link to cheatsheet
Use new drifloon
An emulator for the Uxn stack-machine, written in Javascript.
Include the uxn core in your <head>
tag:
<script src="src/uxn.js"></script>
Include the boot sequence in your website, and evaluate a program:
<script type="text/javascript">
const uxn = new Uxn()
uxn.load(program).eval(0x0100)
</script>
00
system(missing)10
console(partial)20
screen(missing)30
audio(missing)70
midi(missing)80
controller(missing)90
mouse(missing)a0
file(missing)c0
datetime(missing)Build and run tests with reference emulator:
uxnasm etc/tests.tal bin/tests.rom && uxncli bin/tests.rom
Format tests for Javascript:
uxnasm etc/format.tal bin/format.rom && uxncli bin/format.rom bin/tests.rom > etc/program.js
The following resources are a good place to start:
You can also find us in #uxn
on irc.esper.net.
Submit patches using git send-email
to the ~rabbits/public-inbox mailing list.