mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 20:54:29 +01:00
Start implementing Thumb disassembler
This commit is contained in:
parent
f31b530703
commit
e5f6450a24
10 changed files with 160 additions and 14 deletions
|
|
@ -77,8 +77,8 @@ static const std::array<Thumb1Matcher<V>, 7> g_thumb1_instruction_table {{
|
|||
// { INST(&V::thumb1_AND_reg, "AND (reg)", "0100000000mmmddd") },
|
||||
// { INST(&V::thumb1_EOR_reg, "EOR (reg)", "0100000001mmmddd") },
|
||||
{ INST(&V::thumb1_LSL_reg, "LSL (reg)", "0100000010mmmddd") },
|
||||
{ INST(&V::thumb1_LSR_reg, "LSR (reg)", "0100000011sssddd") },
|
||||
{ INST(&V::thumb1_ASR_reg, "ASR (reg)", "0100000100sssddd") },
|
||||
{ INST(&V::thumb1_LSR_reg, "LSR (reg)", "0100000011mmmddd") },
|
||||
{ INST(&V::thumb1_ASR_reg, "ASR (reg)", "0100000100mmmddd") },
|
||||
//{ INST(&V::thumb1_ADCS_rr, "ADCS (rr)", "0100000101mmmddd") },
|
||||
//{ INST(&V::thumb1_SBCS_rr, "SBCS (rr)", "0100000110mmmddd") },
|
||||
//{ INST(&V::thumb1_RORS_rr, "RORS (rr)", "0100000111sssddd") },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue