...
|
...
|
@@ -1,6 +1,6 @@
|
1
|
1
|
# Uxn
|
2
|
2
|
|
3
|
|
-An [8-bit stack-based computer](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
|
|
3
|
+An assembler and emulator for a [tiny stack-based computer](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
|
4
|
4
|
|
5
|
5
|
## Build
|
6
|
6
|
|
...
|
...
|
@@ -33,13 +33,13 @@ Begin by building the assembler and emulator by running the build script. The as
|
33
|
33
|
./build.sh
|
34
|
34
|
```
|
35
|
35
|
|
36
|
|
-This example will create the `life.rom` from the `life.usm` uxambly file, point to a different usm file to assemble a different rom. You can find additional roms [here](https://sr.ht/~rabbits/uxn/sources). To create a rom, from a [usm file](https://wiki.xxiivv.com/site/uxambly.html), use the following command:
|
|
36
|
+The following command will create a rom from an [uxambly file](https://wiki.xxiivv.com/site/uxambly.html), point to a different usm file in the projects folder to assemble a different rom. You can find additional roms [here](https://sr.ht/~rabbits/uxn/sources).
|
37
|
37
|
|
38
|
38
|
```
|
39
|
39
|
bin/uxnasm projects/demos/life.usm bin/life.rom
|
40
|
40
|
```
|
41
|
41
|
|
42
|
|
-To launch the rom:
|
|
42
|
+And, to start the rom:
|
43
|
43
|
|
44
|
44
|
```
|
45
|
45
|
bin/uxnemu bin/life.rom
|