import unittest from manticore.core.cpu.x86 import * from manticore.core.smtlib import Operators from manticore.core.memory import * class CPUTest(unittest.TestCase): _multiprocess_can_split_ = True class ROOperand(object): ''' Mocking class for operand ronly ''' def __init__(self, size, value): self.size = size self.value = value def read(self): return self.value & ((1<