| 113 | } |
| 114 | |
| 115 | bool MemoryInterface::IdempotentWriteBytes(u32 address, void* src, u32 size) |
| 116 | { |
| 117 | if (CompareBytes(address, src, size)) |
| 118 | return true; |
| 119 | |
| 120 | return WriteBytes(address, src, size); |
| 121 | } |
| 122 | |
| 123 | template <MemoryAccessType Value> |
| 124 | bool MemoryInterface::IdempotentWrite(u32 address, Value value) |
no test coverage detected