当前位置: 首页>>代码示例>>Python>>正文


Python Memory.set_bool_value方法代码示例

本文整理汇总了Python中memory.Memory.set_bool_value方法的典型用法代码示例。如果您正苦于以下问题:Python Memory.set_bool_value方法的具体用法?Python Memory.set_bool_value怎么用?Python Memory.set_bool_value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在memory.Memory的用法示例。


在下文中一共展示了Memory.set_bool_value方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from memory import Memory [as 别名]
# 或者: from memory.Memory import set_bool_value [as 别名]

#.........这里部分代码省略.........
    def get_constant_value(self, address):
        if address >= MemoryMap.INT_CONSTANT_BASE and address < MemoryMap.FLOAT_CONSTANT_BASE:
            return self.constant_table.get_int_value(address)
        elif address >= MemoryMap.FLOAT_CONSTANT_BASE and address < MemoryMap.STRING_CONSTANT_BASE:
            return self.constant_table.get_float_value(address)
        elif address >= MemoryMap.STRING_CONSTANT_BASE and address < MemoryMap.INT_BASE:
            return self.constant_table.get_string_value(address)
        else:
            print('Error de ejecucion: Direccion virtual constante desconocida')
            return None

    # La función get_pointer_value recibe una dirección. Con esta dirección se
    # obtiene la dirección real en la memoria global y se llama a la función
    # get_value con esa nueva dirección real
    def get_pointer_value(self, address):
        real_address = self.global_memory.get_pointer_value(address)
        return self.get_value(real_address)

    # Regresa la direccion del pointer en la memoria global
    def get_pointer_address(self, address):
        return self.global_memory.get_pointer_value(address)

    # La función set_global_value recibe una dirección y un valor. Con esta dirección
    # se checa si la dirección es de una variable entera, flotante, string o booleana,
    # y se procede a poner el valor a la memoria global con ese tipo
    def set_global_value(self, address, value):
        if address >= MemoryMap.INT_BASE and address < MemoryMap.FLOAT_BASE:
            return self.global_memory.set_int_value(address, value)
        elif address >= MemoryMap.FLOAT_BASE and address < MemoryMap.STRING_BASE:
            return self.global_memory.set_float_value(address, value)
        elif address >= MemoryMap.STRING_BASE and address < MemoryMap.BOOL_BASE:
            return self.global_memory.set_string_value(address, value)
        elif address >= MemoryMap.BOOL_BASE and address < MemoryMap.LOCAL_INT_BASE:
            return self.global_memory.set_bool_value(address, value)
        else:
            print('Error de ejecucion: Direccion virtual global desconocida')
            return None

    # La función set_local_value recibe una dirección y un valor. Con esta dirección
    # se checa si la dirección es de una variable entera, flotante, string o booleana,
    # y se procede a poner el valor a la memoria local con ese tipo
    def set_local_value(self, address, value):
        if address >= MemoryMap.LOCAL_INT_BASE and address < MemoryMap.LOCAL_FLOAT_BASE:
            return self.get_local_memory().set_int_value(address, value)
        elif address >= MemoryMap.LOCAL_FLOAT_BASE and address < MemoryMap.LOCAL_STRING_BASE:
            return self.get_local_memory().set_float_value(address, value)
        elif address >= MemoryMap.LOCAL_STRING_BASE and address < MemoryMap.LOCAL_BOOL_BASE:
            return self.get_local_memory().set_string_value(address, value)
        elif address >= MemoryMap.LOCAL_BOOL_BASE and address < MemoryMap.TEMP_INT_BASE:
            return self.get_local_memory().set_bool_value(address, value)
        else:
            print('Error de ejecucion: Direccion virtual local desconocida')
            return None

    # La función set_temp_value recibe una dirección y un valor. Con esta dirección
    # se checa si la dirección es de una variable entera, flotante, string o booleana,
    # y se procede a poner el valor a la memoria temporal con ese tipo
    def set_temp_value(self, address, value):
        if address >= MemoryMap.TEMP_INT_BASE and address < MemoryMap.TEMP_FLOAT_BASE:
            return self.get_local_memory().set_temp_int_value(address, value)
        elif address >= MemoryMap.TEMP_FLOAT_BASE and address < MemoryMap.TEMP_STRING_BASE:
            return self.get_local_memory().set_temp_float_value(address, value)
        elif address >= MemoryMap.TEMP_STRING_BASE and address < MemoryMap.TEMP_BOOL_BASE:
            return self.get_local_memory().set_temp_string_value(address, value)
        elif address >= MemoryMap.TEMP_BOOL_BASE and address < MemoryMap.POINTER_BASE:
            return self.get_local_memory().set_temp_bool_value(address, value)
开发者ID:maumruiz,项目名称:Tortuga,代码行数:70,代码来源:memory_map.py


注:本文中的memory.Memory.set_bool_value方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。