| 508 | // of the address/register operations. |
| 509 | |
| 510 | __noinline static void RaiseAddressError(u32 addr, bool store) |
| 511 | { |
| 512 | const std::string message(fmt::format("Address Error, addr=0x{:x} [{}]", addr, store ? "store" : "load")); |
| 513 | |
| 514 | // TODO: This doesn't actually get raised in the CPU yet. |
| 515 | Console.Error(message); |
| 516 | |
| 517 | Cpu->CancelInstruction(); |
| 518 | } |
| 519 | |
| 520 | void LB() |
| 521 | { |