Removed the old system mapping docs

This commit is contained in:
Devine Lu Linvega 2023-04-10 13:18:15 -07:00
parent 6a0b572f6d
commit ed2c625938
1 changed files with 0 additions and 16 deletions

View File

@ -2,22 +2,6 @@
An emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/site/uxn.html), written in ANSI C.
## Uxn11/System
This emulator's system device supports changing a stack's location to a page of memory. The default memory mapping is as follows:
- `0000-ffff`, as **RAM**.
- `10000-100ff`, as **working stack**.
- `10100-101ff`, as **return stack**.
To use the last page of ram(`0xff00`) to host the working stack:
```
#ff .System/wst DEO
```
The stack mapping is 254 bytes of data, a byte for the pointer and a byte for an error code.
## Building
### Graphical