blob: aaa54fed115a354193bdae1024eb2fb2acd587bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "sysregs_gen.h"
#ifdef __cplusplus
extern "C" {
#endif
const char *get_system_register_name(enum SystemReg);
const char *get_system_register_name_decomposed(int op0, int op1, int CRn, int CRm, int op2);
#ifdef __cplusplus
}
#endif
|