aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorMerryMage <[email protected]>2016-08-07 18:08:48 +0100
committerMerryMage <[email protected]>2016-08-07 18:08:48 +0100
commitaba705f6b97934aaedcd93e9bced39a9b4aedf23 (patch)
tree82aa00c55898ec953ff03b9b1298de126d6b1a9d /docs
parent0f412247ed1d39e3d7ae4cdf110a8e422cae77f8 (diff)
downloaddynarmic-aba705f6b97934aaedcd93e9bced39a9b4aedf23.tar.gz
dynarmic-aba705f6b97934aaedcd93e9bced39a9b4aedf23.zip
BackendX64: Merge Routines into BlockOfCode
Diffstat (limited to 'docs')
-rw-r--r--docs/Design.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Design.md b/docs/Design.md
index fe520a2b..84d5cbcd 100644
--- a/docs/Design.md
+++ b/docs/Design.md
@@ -30,7 +30,7 @@ memory location and memory reader callback and returns a basic block of IR.
* The IR can be found under `src/frontend/ir/`.
* Optimization is not implemented yet.
* Emission is done by `EmitX64` which can be found in `src/backend_x64/emit_x64.{h,cpp}`.
-* Execution is performed by calling `Routines::RunCode` in `src/backend_x64/routines.{h,cpp}`.
+* Execution is performed by calling `BlockOfCode::RunCode` in `src/backend_x64/routines.{h,cpp}`.
## Decoder