mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
219 B
15 lines
219 B
#ifndef _CpuReg_c_h
|
|
#define _CpuReg_c_h
|
|
#define J_EXX_SIMULATED (1)
|
|
enum IntelRegId
|
|
{
|
|
EAX_id = 0,
|
|
EBX_id = 1,
|
|
ECX_id = 2,
|
|
EDX_id = 3,
|
|
ESP_id = 4,
|
|
EBP_id = 5,
|
|
ESI_id = 6,
|
|
EDI_id = 7
|
|
};
|
|
#endif /* ! _CpuReg_c_h */
|