Esempio n. 1
0
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     port, dest = args
     if eu.has_input(port):
         value = eu.read_port(port)
         eu.store(value)
         return True
     return False
Esempio n. 2
0
File: cmp.py Progetto: en0/emu
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     a, b = args
     eu.clear_flag(FLG_CORE_EQ | FLG_CORE_LT | FLG_CORE_GT)
     if a < b:
         eu.set_flag(FLG_CORE_LT)
     if a > b:
         eu.set_flag(FLG_CORE_GT)
     if a == b:
         eu.set_flag(FLG_CORE_EQ)
     return True
Esempio n. 3
0
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     a, b = args
     eu.store(a | b)
     return True
Esempio n. 4
0
File: jmp.py Progetto: en0/emu
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     value, _ = args
     eu.store(value)
     return False
Esempio n. 5
0
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     value, port = args
     eu.write_port(port, value)
     return True
Esempio n. 6
0
File: hlt.py Progetto: en0/emu
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     eu.set_flag(FLG_CORE_HLT)
     return False
Esempio n. 7
0
File: brk.py Progetto: en0/emu
 def execute(self, eu: IExecutionUnit, *args) -> bool:
     eu.dump_core()
     input("...")
     return True