15 lines
201 B
C
15 lines
201 B
C
#ifndef RZ_DRX_H
|
|
#define RZ_DRX_H
|
|
|
|
enum {
|
|
DRX_API_LIST = 0,
|
|
DRX_API_GET_BP = 1,
|
|
DRX_API_SET_BP = 2,
|
|
DRX_API_REMOVE_BP = 3,
|
|
};
|
|
|
|
#if __i386__ || __x86_64__
|
|
#define NUM_DRX_REGISTERS 8
|
|
#endif
|
|
|
|
#endif
|