uxn/README.md

96 lines
1.8 KiB
Markdown
Raw Normal View History

2021-01-29 19:17:59 +00:00
# Uxn
2021-02-08 22:49:45 +00:00
A [stack-based VM](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
2021-01-29 19:35:59 +00:00
2021-02-12 02:48:45 +00: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-03-12 04:41:35 +00:00
## Uxambly
2021-01-29 19:35:59 +00:00
2021-03-12 04:41:35 +00:00
Read more in the [Uxambly Guide](https://wiki.xxiivv.com/site/uxambly.html).
2021-02-06 18:39:13 +00:00
2021-01-29 19:35:59 +00:00
```
( hello world )
2021-01-30 22:25:48 +00:00
2021-03-01 19:18:11 +00:00
&Console { pad 8 char 1 byte 1 short 2 }
2021-02-05 22:01:34 +00:00
|0100 @RESET
2021-03-11 20:19:59 +00:00
,text1 ,print-label JSR2
,text2 ,print-label JSR2
#ab =CNSL.byte
#cdef =CNSL.short
2021-02-08 04:49:00 +00:00
2021-02-13 21:21:05 +00:00
BRK
2021-02-05 22:01:34 +00:00
@print-label ( text )
2021-03-11 20:19:59 +00:00
2021-03-11 23:47:28 +00:00
$loop NOP
( send ) DUP2 LDR =CNSL.char
( incr ) #0001 ADD2
( loop ) DUP2 LDR #00 NEQ ^$loop MUL JMPS
POP2
2021-03-01 17:38:54 +00:00
2021-03-11 23:47:28 +00:00
RTS
2021-03-11 23:47:28 +00:00
@text1 [ Welcome 20 to 20 UxnVM 0a00 ]
@text2 [ Hello 20 World 0a00 ]
2021-02-08 04:49:00 +00:00
|c000 @FRAME
|d000 @ERROR
2021-03-11 20:19:59 +00:00
|FF00 ;CNSL Console
2021-02-27 03:46:56 +00:00
2021-03-01 17:38:54 +00:00
|FFF0 .RESET .FRAME .ERROR ( vectors )
|FFF8 [ 13fd 1ef3 1bf2 ] ( palette )
2021-01-29 19:35:59 +00:00
```
2021-02-08 22:49:45 +00:00
## TODOs
2021-02-01 19:58:47 +00:00
2021-02-26 18:16:35 +00:00
### OS Boot Disk
2021-02-15 01:00:17 +00:00
2021-02-26 18:16:35 +00:00
- Load external disk in disk2
- Build hex editor
### Assembler
2021-02-15 01:00:17 +00:00
- Includes
- Defines
2021-03-11 03:41:46 +00:00
- Jump helpers
2021-02-05 18:51:45 +00:00
2021-03-11 20:19:59 +00:00
## Notes
### Conditional Jumping
I've considered automatically popping an amount of items from the stack equal to the offset between the opcode's push/pop to make the stack length more predictable, and making the pattern JMP? POP2 unecessary, but that idea would make DUP? unusable. That change was reverted.
2021-03-08 18:30:13 +00:00
## Palettes
- `[ 6a03 4a0d aa0c ]`, purple/cyan
- `[ a1f3 a14d a16c ]`, grey-pink/teal
2021-01-30 22:25:48 +00: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-06 04:18:30 +00:00
https://justinmeiners.github.io/lc3-vm/