diff python/x86.py @ 157:8f3924b6076e

Added some code generator things
author Windel Bouwman
date Sun, 03 Mar 2013 18:14:35 +0100
parents
children 9683a4cd848f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python/x86.py	Sun Mar 03 18:14:35 2013 +0100
@@ -0,0 +1,9 @@
+import ppci
+
+class X86CodeGen:
+   def __init__(self, diag):
+      self.diag = diag
+
+   def genBin(self, i):
+      print(i)
+