python: add SystemZ support
diff --git a/bindings/const_generator.py b/bindings/const_generator.py
index 8909547..4c00edc 100644
--- a/bindings/const_generator.py
+++ b/bindings/const_generator.py
@@ -5,7 +5,7 @@
 
 INCL_DIR = '../include/'
 
-include = [ 'arm.h', 'arm64.h', 'mips.h', 'x86.h', 'ppc.h', 'sparc.h' ]
+include = [ 'arm.h', 'arm64.h', 'mips.h', 'x86.h', 'ppc.h', 'sparc.h', 'systemz.h' ]
 
 template = {
     'java': {
@@ -20,6 +20,7 @@
             'x86.h': 'X86',
             'ppc.h': 'Ppc',
             'sparc.h': 'Sparc',
+            'systemz.h': 'Sysz',
             'comment_open': '\t//',
             'comment_close': '',
         },
@@ -35,6 +36,7 @@
             'x86.h': 'x86',
             'ppc.h': 'ppc',
             'sparc.h': 'sparc',
+            'systemz.h': 'sysz',
             'comment_open': '#',
             'comment_close': '',
         }