jit/interpreter: Add stub files for arm32 decoding

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar 2025-12-04 19:33:35 -04:00
parent 195893389d
commit 54166a54ea
No known key found for this signature in database
GPG key ID: 04307C401999C596
3 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
# Multithreading
# Tiered JIT Compilation
Pound's current goal is to create a Task-Based Parrallel JIT with Work-Stealing. This should hopefully be faster than Dynarmic's multithreading model. Wish me luck.
## Roadmap:

View file

@ -0,0 +1,3 @@
/*
* Defines pvm_jit_interpreter_instruction_t struct and its internal opcodes.
*/

View file

@ -0,0 +1,3 @@
/*
* Reads ARM code and produces the an array of interpreter instructions.
*/