849,853c849,852
< 0x0F: LoadStore::swap({{
< uint32_t temp = Rd;
< Rd = Mem.uw;
< Mem.uw = temp;
< }});
---
> 0x0F: LoadStore::swap(
> {{*temp = Rd.uw;
> Rd.uw = Mem.uw;}},
> {{Mem.uw = *temp;}});
876,879c875,877
< 0x1D: LoadStore::ldstuba({{
< Rd = Mem.ub;
< Mem.ub = 0xFF;
< }});
---
> 0x1D: LoadStore::ldstuba(
> {{Rd = Mem.ub;}},
> {{Mem.ub = 0xFF}});
881,885c879,882
< 0x1F: LoadStore::swapa({{
< uint32_t temp = Rd;
< Rd = Mem.uw;
< Mem.uw = temp;
< }});
---
> 0x1F: LoadStore::swapa(
> {{*temp = Rd.uw;
> Rd.uw = Mem.uw;}},
> {{Mem.uw = *temp;}});