Skip to content

Commit a238225

Browse files
committed
improve error reporting TODO: fix 0xF050 pd value unmapped for 991cnx etc
1 parent d19fc60 commit a238225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

emulator/src/Chipset/MMURegion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace casioemu {
1616

1717
void MMURegion::Setup(size_t _base, size_t _size, std::string _description, void *_userdata, ReadFunction _read, WriteFunction _write, Emulator &_emulator) {
1818
if (setup_done)
19-
PANIC("Setup invoked twice\n");
19+
PANIC("Setup invoked twice: %s\n", _description.c_str());
2020

2121
emulator = &_emulator;
2222
base = _base;

0 commit comments

Comments
 (0)