2021-01-29 14:17:59 -05:00
|
|
|
# Uxn
|
|
|
|
|
2021-02-08 17:49:45 -05:00
|
|
|
A [stack-based VM](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
|
2021-01-29 14:35:59 -05:00
|
|
|
|
2021-02-11 21:48:45 -05:00
|
|
|
## Setup
|
|
|
|
|
|
|
|
If you wish to build your own emulator, you can create a new instance of Uxn like:
|
|
|
|
|
|
|
|
```
|
|
|
|
#include "uxn.h"
|
|
|
|
|
|
|
|
Uxn u;
|
|
|
|
|
|
|
|
if(!bootuxn(&u))
|
|
|
|
return error("Boot", "Failed");
|
|
|
|
if(!loaduxn(&u, argv[1]))
|
|
|
|
return error("Load", "Failed");
|
|
|
|
if(!init())
|
|
|
|
return error("Init", "Failed");
|
|
|
|
|
|
|
|
evaluxn(u, u->vreset); /* Once on start */
|
|
|
|
evaluxn(u, u->vframe); /* Each frame
|
|
|
|
```
|
|
|
|
|
2021-01-29 20:49:10 -05:00
|
|
|
## Assembly Syntax
|
2021-01-29 14:35:59 -05:00
|
|
|
|
2021-02-23 16:49:36 -05:00
|
|
|
- `ADD`, an opcode.
|
2021-02-08 17:49:45 -05:00
|
|
|
- `@label`, assign the current address to a label.
|
2021-02-13 16:21:05 -05:00
|
|
|
- `;variable 2`, assign an address to a label automatically.
|
|
|
|
- `:const 1a2b`, assign an address to a label manually.
|
2021-02-23 01:15:02 -05:00
|
|
|
- `¯o { x 2 y 2 }`, define a macro named `macro`.
|
2021-02-23 16:49:36 -05:00
|
|
|
- `#1a`, a literal byte/short.
|
|
|
|
- `+1a`, a literal signed byte/short.
|
|
|
|
- `-1a`, a literal signed byte/short(negative).
|
|
|
|
- `.ab`, a raw byte/short in memory.
|
2021-02-14 20:00:17 -05:00
|
|
|
- `,literal`, push label address to stack, prefixed with `LIT LEN`.
|
|
|
|
- `=label`, helper to STR, equivalent to `,label STR`, or `label STR2`.
|
|
|
|
- `~label`, helper to LDR, equivalent to `,label LDR2`, or `,label LDR2`.
|
2021-02-23 16:49:36 -05:00
|
|
|
- `|0010`, move to position in the program.
|
|
|
|
- `( comment )`, toggle parsing on/off.
|
|
|
|
- `[ 0123 abcd ]`, write shorts to memory.
|
|
|
|
- `[ Hello World ]`, write text to memory.
|
2021-01-31 00:31:49 -05:00
|
|
|
|
2021-02-06 13:39:13 -05:00
|
|
|
### Operator modes
|
|
|
|
|
2021-02-13 16:21:05 -05:00
|
|
|
- `#1234 #0001 ADD2`, 16-bits operators have the short flag `2`.
|
|
|
|
- `#12 #11 GTH JMP?`, conditional operators have the cond flag `?`.
|
2021-02-13 11:38:23 -05:00
|
|
|
- `+21 -03 MULS`, signed operators have the cond flag `S`.
|
2021-02-14 20:00:17 -05:00
|
|
|
- `ADDS2?`, modes can be combined.
|
2021-02-06 13:39:13 -05:00
|
|
|
|
2021-01-29 14:35:59 -05:00
|
|
|
```
|
2021-02-23 16:49:36 -05:00
|
|
|
( hello world )
|
2021-01-30 17:25:48 -05:00
|
|
|
|
2021-03-01 12:38:54 -05:00
|
|
|
&Console { pad 8 char 1 byte 1 }
|
2021-02-05 17:01:34 -05:00
|
|
|
|
2021-02-13 19:37:03 -05:00
|
|
|
|0100 @RESET
|
2021-02-23 16:49:36 -05:00
|
|
|
|
2021-03-01 12:38:54 -05:00
|
|
|
,text1 ,print-label JSR
|
|
|
|
,text2 ,print-label JSR
|
2021-02-07 23:49:00 -05:00
|
|
|
|
2021-02-13 16:21:05 -05:00
|
|
|
BRK
|
2021-02-05 17:01:34 -05:00
|
|
|
|
2021-02-23 16:49:36 -05:00
|
|
|
@print-label ( text )
|
|
|
|
|
|
|
|
@cliloop
|
2021-03-01 12:38:54 -05:00
|
|
|
DUP2 LDR =dev/console.char ( write pointer value to console )
|
2021-02-23 16:49:36 -05:00
|
|
|
#0001 ADD2 ( increment string pointer )
|
|
|
|
DUP2 LDR #00 NEQ ,cliloop ROT JMP? POP2 ( while *ptr!=0 goto loop )
|
|
|
|
POP2
|
2021-03-01 12:38:54 -05:00
|
|
|
|
2021-02-23 16:49:36 -05:00
|
|
|
RTS
|
|
|
|
|
2021-03-01 12:38:54 -05:00
|
|
|
@text1 [ Hello World 0a00 ] ( store text with a linebreak and null byte )
|
|
|
|
@text2 [ Welcome to UxnVM 0a00 ]
|
2021-02-07 23:49:00 -05:00
|
|
|
|
2021-02-23 16:49:36 -05:00
|
|
|
|c000 @FRAME
|
|
|
|
|d000 @ERROR
|
2021-02-13 19:37:03 -05:00
|
|
|
|
2021-02-26 22:46:56 -05:00
|
|
|
|FF00 ;dev/console Console
|
|
|
|
|
2021-03-01 12:38:54 -05:00
|
|
|
|FFF0 .RESET .FRAME .ERROR ( vectors )
|
|
|
|
|FFF8 [ 13fd 1ef3 1bf2 ] ( palette )
|
2021-01-29 14:35:59 -05:00
|
|
|
```
|
|
|
|
|
2021-02-14 14:51:36 -05:00
|
|
|
## Emulator
|
|
|
|
|
|
|
|
### Controller(dev/ctrl)
|
|
|
|
|
2021-02-18 21:34:26 -05:00
|
|
|
A device that works like a NES controller, each button is a bit from a single byte. Press `h` to toggle debugger.
|
2021-02-14 14:51:36 -05:00
|
|
|
|
2021-02-14 20:00:17 -05:00
|
|
|
- `0x01` Ctrl
|
|
|
|
- `0x02` Alt
|
|
|
|
- `0x04` Escape
|
|
|
|
- `0x08` Return
|
|
|
|
- `0x10` Up
|
|
|
|
- `0x20` Down
|
|
|
|
- `0x40` Left
|
|
|
|
- `0x80` Right
|
2021-02-14 14:51:36 -05:00
|
|
|
|
2021-02-08 17:49:45 -05:00
|
|
|
## TODOs
|
2021-02-01 14:58:47 -05:00
|
|
|
|
2021-02-26 13:16:35 -05:00
|
|
|
### OS Boot Disk
|
2021-02-14 20:00:17 -05:00
|
|
|
|
2021-02-26 13:16:35 -05:00
|
|
|
- Load external disk in disk2
|
|
|
|
- Build hex editor
|
|
|
|
- Build sprite editor
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
- Basics:
|
|
|
|
- Simple drag/drop redraw
|
|
|
|
- Window basics with open/close drag/drop redraw
|
|
|
|
- Example of button pointing to a subroutine
|
|
|
|
- GUI:
|
|
|
|
- Line routine
|
|
|
|
|
|
|
|
### Assembler
|
2021-02-14 20:00:17 -05:00
|
|
|
|
|
|
|
- Includes
|
|
|
|
- Defines
|
2021-02-05 13:51:45 -05:00
|
|
|
|
2021-01-30 17:25:48 -05:00
|
|
|
## Refs
|
|
|
|
|
|
|
|
https://code.9front.org/hg/plan9front/file/a7f9946e238f/sys/src/games/nes/cpu.c
|
|
|
|
http://www.w3group.de/stable_glossar.html
|
|
|
|
http://www.emulator101.com/6502-addressing-modes.html
|
|
|
|
http://forth.works/8f0c04f616b6c34496eb2141785b4454
|
2021-02-05 23:18:30 -05:00
|
|
|
https://justinmeiners.github.io/lc3-vm/
|