mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
15 lines
310 B
C
15 lines
310 B
C
#pragma once
|
|
#include "Emu/Memory/vm_ptr.h"
|
|
|
|
enum
|
|
{
|
|
SYS_CRASH_DUMP_MAX_LABEL_SIZE = 16,
|
|
SYS_CRASH_DUMP_MAX_LOG_AREA = 127 // not actually defined in CELL
|
|
};
|
|
|
|
struct sys_crash_dump_log_area_info_t
|
|
{
|
|
char label[SYS_CRASH_DUMP_MAX_LABEL_SIZE]; // 15 + 1 (0 terminated)
|
|
vm::ptr<void> addr;
|
|
be_t<u64> size;
|
|
};
|