Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/UI/ImDebugger/ImCommand.h
10522 views
1
#pragma once
2
3
#include <cstdint>
4
5
enum class ImCmd {
6
NONE = 0,
7
TRIGGER_FIND_POPUP,
8
SHOW_IN_CPU_DISASM,
9
SHOW_IN_GE_DISASM,
10
SHOW_IN_MEMORY_VIEWER, // param is address, param2 is viewer index
11
SHOW_IN_PIXEL_VIEWER, // param is address, param2 is stride, |0x80000000 if depth, param3 is w/h
12
SHOW_IN_MEMORY_DUMPER, // param is address, param2 is size, param3 is mode
13
};
14
15
struct ImCommand {
16
ImCmd cmd;
17
uint32_t param;
18
uint32_t param2;
19
uint32_t param3;
20
};
21
22
struct ImControl {
23
ImCommand command;
24
};
25
26