move docs inline, add data.txt + altivec_data.txt

This commit is contained in:
lizzie 2026-01-08 07:51:09 +00:00
parent dfbe69be19
commit 1e69c25798
5 changed files with 379 additions and 0 deletions

8
docs/dynarmic/PowerPC.md Normal file
View file

@ -0,0 +1,8 @@
# PowerPC 64 backend
The ppc64 backend currently only supports the little endian variant, with big endian support being experimental for the time being. Additionally only A32 is supported (for now).
- Flag handling: Flags are emulated via software, while there may be some funny tricks with the CTR, I'd rather not bother - plus it's widely known that those instructions are not nice on real metal - so I would rather take the i-cache cost.
- 128-bit atomics: No 128-bit atomic support is provided, this may cause wrong or erroneous execution in some contexts.
To handle endianess differences all 16/32/64-bit loads and stores to the "emulated memory" are byteswapped beforehand.

View file

@ -51,6 +51,7 @@ Documentation
-------------
Design documentation can be found at [./Design.md](./Design.md).
PowerPC design documentation can be found at [./PowerPC](./PowerPC.md).
Usage Example