| 8482 | } |
| 8483 | |
| 8484 | const TCHAR *debuginfo (int mode) |
| 8485 | { |
| 8486 | static TCHAR txt[100]; |
| 8487 | uae_u32 pc = M68K_GETPC; |
| 8488 | _sntprintf (txt, sizeof txt, _T("PC=%08X INS=%04X %04X %04X"), |
| 8489 | pc, get_word_debug (pc), get_word_debug (pc + 2), get_word_debug (pc + 4)); |
| 8490 | return txt; |
| 8491 | } |
| 8492 | |
| 8493 | void mmu_disasm (uaecptr pc, int lines) |
| 8494 | { |
no test coverage detected