11 lines
219 B
Python
11 lines
219 B
Python
class Registers:
|
|
eip = 0 # instruction pointer
|
|
eax = 0
|
|
ebx = 0
|
|
ecx = 0
|
|
edx = 0
|
|
esi = 0 # source
|
|
edi = 0 # destination
|
|
esp = 0 # stack pointer
|
|
ebp = 0
|
|
flags = 0b00000000 #flags ob
|