16 lines
468 B
Markdown
16 lines
468 B
Markdown
# bioSandbox
|
|
---
|
|
|
|
## Dependencies
|
|
- C++26 STL
|
|
- [raylib](https://raylib.com)
|
|
- [rxi/dyad](https://github.com/rxi/dyad)
|
|
|
|
## 8086 emulator compatibility
|
|
All features the 8086 emulator of the engine supports are demonstrated in the [test assembly file and binary](gameenv/code/test.asm).
|
|
|
|
- addition on (A/C/D/B)X from (A/C/D/B)X
|
|
- subtraction on (A/C/D/B)X from (A/C/D/B)X
|
|
- move on (A/C/D/B)X from immediate
|
|
- increment/decrement (A/C/D/B)X
|
|
- call functions and return |