mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 05:34:42 +01:00
thumb32: Implement STREX variants
Implements the exclusive store instructions. Now all that remains for ARMv7 load/stores to be done is the exclusive loads.
This commit is contained in:
parent
d8066b091b
commit
6241ff6be2
4 changed files with 75 additions and 4 deletions
|
|
@ -166,6 +166,12 @@ std::vector<u16> GenRandomThumbInst(u32 pc, bool is_last_inst, A32::ITState it_s
|
|||
"thumb16_BKPT",
|
||||
"thumb16_IT",
|
||||
"thumb16_SETEND",
|
||||
|
||||
// Exclusive load/stores
|
||||
"thumb32_STREX",
|
||||
"thumb32_STREXB",
|
||||
"thumb32_STREXD",
|
||||
"thumb32_STREXH",
|
||||
};
|
||||
|
||||
for (const auto& [fn, bitstring] : list) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue