We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19fc60 commit a238225Copy full SHA for a238225
emulator/src/Chipset/MMURegion.cpp
@@ -16,7 +16,7 @@ namespace casioemu {
16
17
void MMURegion::Setup(size_t _base, size_t _size, std::string _description, void *_userdata, ReadFunction _read, WriteFunction _write, Emulator &_emulator) {
18
if (setup_done)
19
- PANIC("Setup invoked twice\n");
+ PANIC("Setup invoked twice: %s\n", _description.c_str());
20
21
emulator = &_emulator;
22
base = _base;
0 commit comments