-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathREG.h
21 lines (19 loc) · 1 KB
/
REG.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef F_H
#define F_H
PyObject* Python_REG_is_reg(PyObject* self, PyObject* args);
PyObject* Python_REG_is_pseudo(PyObject* self, PyObject* args);
PyObject* Python_REG_is_gr(PyObject* self, PyObject* args);
PyObject* Python_REG_is_fr(PyObject* self, PyObject* args);
PyObject* Python_REG_is_br(PyObject* self, PyObject* args);
PyObject* Python_REG_is_gr64(PyObject* self, PyObject* args);
PyObject* Python_REG_is_gr32(PyObject* self, PyObject* args);
PyObject* Python_REG_is_gr16(PyObject* self, PyObject* args);
PyObject* Python_REG_is_gr8(PyObject* self, PyObject* args);
PyObject* Python_REG_is_seg(PyObject* self, PyObject* args);
PyObject* Python_REG_is_pin_gr(PyObject* self, PyObject* args);
PyObject* Python_REG_INVALID(PyObject* self, PyObject* args);
PyObject* Python_REG_valid(PyObject* self, PyObject* args);
PyObject* Python_REG_is_pin64(PyObject* self, PyObject* args);
PyObject* Python_REG_FullRegName(PyObject* self, PyObject* args);
PyObject* Python_REG_StringShort(PyObject* self, PyObject* args);
#endif