uxn/README.md

72 lines
1.2 KiB
Markdown
Raw Normal View History

2021-01-29 19:17:59 +00:00
# Uxn
A stack-based VM, written in ANSI C.
## Build
```
cc uxn.c -std=c89 -Os -DNDEBUG -g0 -s -Wall -Wno-unknown-pragmas -o uxn
```
2021-01-29 19:35:59 +00:00
2021-01-30 01:49:10 +00:00
## Assembly Syntax
2021-01-29 19:35:59 +00:00
2021-02-04 20:22:08 +00:00
### Write
- `;variable`, set a name to address on the zero-page
- `:label`, set a name to an address
### Read
- `,literal`, get a literal pointer
- `.pointer`, get a raw pointer
### Special
- `@0010`, move to position in the program
- `( comment )`
2021-01-31 05:31:49 +00:00
2021-01-29 19:35:59 +00:00
```
2021-02-05 02:25:49 +00:00
;value ( alloc a zero-page variable )
2021-02-04 20:22:08 +00:00
2021-02-04 23:38:04 +00:00
@0010 ( start at page 1 )
2021-01-30 01:49:10 +00:00
2021-02-05 02:25:49 +00:00
,03 ,02 ADD ,05 EQU
,there ROT JMC
2021-01-30 22:25:48 +00:00
2021-02-01 22:49:09 +00:00
:here
2021-02-04 23:38:04 +00:00
( when not equal )
,ee
2021-02-02 04:21:27 +00:00
BRK
2021-01-30 22:25:48 +00:00
2021-02-01 22:49:09 +00:00
:there
2021-02-04 23:38:04 +00:00
( when is equal )
,ff
2021-02-02 04:21:27 +00:00
BRK
2021-01-29 19:35:59 +00:00
```
2021-02-01 19:58:47 +00:00
## Mission
2021-02-04 05:53:56 +00:00
### Assembler
2021-02-03 19:30:18 +00:00
- Catch overflow/underflow
2021-02-04 05:53:56 +00:00
- Constants
2021-02-03 19:30:18 +00:00
- Jumps should be relative
2021-02-04 05:53:56 +00:00
### CPU
2021-02-03 19:30:18 +00:00
- Pointers/Literals
2021-02-01 22:49:09 +00:00
- A Three-Way Decision Routine(http://www.6502.org/tutorials/compare_instructions.html)
2021-02-01 19:58:47 +00:00
- Print word to stdout
- Draw pixel to screen
- Detect mouse click
2021-01-31 05:31:49 +00:00
- SDL Layer Emulator
- Build PPU
2021-02-04 23:38:04 +00:00
- Add flags..
2021-02-02 04:21:27 +00:00
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
https://justinmeiners.github.io/lc3-vm/