diff options
author | 2022-07-28 19:53:34 +0100 | |
---|---|---|
committer | 2022-07-28 14:53:34 -0400 | |
commit | d08013cc660b90ad63699fa796f8b3861d85985b (patch) | |
tree | 316504f2ea3ef45f81c756e937d81f629e30d03e /src/tools/unidasm.cpp | |
parent | e2d700fd9afb9add71e8787655fa1d78b7568391 (diff) |
cloned the mcs51 core as axc51, stripped it back, will allow monon work to continue without making a mess of the original mcs51 core. (#10140)
* cloned the mcs51 core as axc51, stripped it back, will allow monon work to continue without making a mess of the original mcs51 core.
* remove some redundant bits
* replace SFR table with AXC51 / AX208 one, removing some other functionality which is not the same on this series
* remove some other bits that are redundant now we're not trying to support other mcs51 models in the axc core
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r-- | src/tools/unidasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp index 46c835417e5..25a468475d9 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -109,7 +109,7 @@ using util::BIT; #include "cpu/mcs40/mcs40dasm.h" #include "cpu/mcs48/mcs48dsm.h" #include "cpu/mcs51/mcs51dasm.h" -#include "cpu/mcs51/axc51-core_dasm.h" +#include "cpu/axc51/axc51dasm.h" #include "cpu/mcs96/i8x9xd.h" #include "cpu/mcs96/i8xc196d.h" #include "cpu/melps4/melps4d.h" |