diff python/irmach.py @ 269:5f8c04a8d26b

Towards better modularity
author Windel Bouwman
date Sun, 18 Aug 2013 17:43:18 +0200
parents 5ec7580976d9
children cdc76d183bcc
line wrap: on
line diff
--- a/python/irmach.py	Wed Aug 14 20:12:40 2013 +0200
+++ b/python/irmach.py	Sun Aug 18 17:43:18 2013 +0200
@@ -1,18 +1,7 @@
 
-
-class MachProgram:
-    pass
-
-
-class MachFunction:
-    def __init__(self, name):
-        self.name = name
-        self.entry = None
-
-
-class MachBlock:
-    def __init__(self):
-        self.instructions = []
+"""
+  Abstract assembly language instructions
+"""
 
 
 class AbstractInstruction: