Browse Source

Enable jcmp op again

Yann Weber 6 years ago
parent
commit
038692f03f
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      gte/turmit.py

+ 0
- 2
gte/turmit.py View File

@@ -392,7 +392,6 @@ class Turmit(object):
392 392
         if a != 0:
393 393
             self.__ip += offset
394 394
     """
395
-    """
396 395
 
397 396
     @RpnOp
398 397
     def jcmp(self, a, b, cnd, offset):
@@ -417,4 +416,3 @@ class Turmit(object):
417 416
         if cnd & 1 == 0 and a == b or cnd & 1 and a != b or\
418 417
 	   cnd & 0b10 and a < b or cnd & 0b100 and a > b:
419 418
             self.__ip += offset
420
-    """

Loading…
Cancel
Save