diff python/ppci/target/arm/instructions.py @ 360:42343d189e14

Bugfix in for loop
author Windel Bouwman
date Fri, 14 Mar 2014 16:11:32 +0100
parents 52492b304adf
children c05ab629976a
line wrap: on
line diff
--- a/python/ppci/target/arm/instructions.py	Fri Mar 14 15:41:55 2014 +0100
+++ b/python/ppci/target/arm/instructions.py	Fri Mar 14 16:11:32 2014 +0100
@@ -339,6 +339,9 @@
 class Bgt(BranchBase):
     cond = GT
 
+class Bge(BranchBase):
+    cond = GE
+
 class Ble(BranchBase):
     cond = LE