summaryrefslogtreecommitdiff
path: root/AsmParser.py
diff options
context:
space:
mode:
Diffstat (limited to 'AsmParser.py')
-rw-r--r--AsmParser.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/AsmParser.py b/AsmParser.py
index 13b41b8..c2d0921 100644
--- a/AsmParser.py
+++ b/AsmParser.py
@@ -1,22 +1,17 @@
#!/usr/bin/env python
"""Compiles C into assembly for the practicum processor (PP2)
-All rights reserved, you may not redistribute or use this program without prior
-permission from Peter Wu or Xander Houtman. Use of this program is entirely
-your own risk. In no circumstances can the authors of this program be held
-responsible for any damage including, but not limited to, financial damage or
-data loss. Modification of this program is not allowed without prior
-permission. The generated output (assembly and messages) are not subject to
-this license.
+Copyright (C) 2011-2014 Peter Wu <lekensteyn@gmail.com>
+Licensed under the MIT license <http://opensource.org/licenses/MIT>.
"""
__author__ = "Peter Wu"
-__copyright__ = "Copyright 2011, Peter Wu"
+__copyright__ = "Copyright (C) 2011-2014 Peter Wu"
__credits__ = ["Peter Wu"]
-__license__ = "Proprietary"
+__license__ = "MIT"
__version__ = "1.0"
__maintainer__ = "Peter Wu"
-__email__ = "uwretep@gmail.com"
+__email__ = "lekensteyn@gmail.com"
from AsmLine import AsmLine
from NamedId import NamedId
@@ -75,7 +70,7 @@ class AsmParser(object):
cmd, opts = re.split("\s+", line + " ", 1)
cmd = cmd[1:]
opts = opts.strip()
-
+
if cmd == "CODE":
self.in_section = "CODE"
elif cmd == "DATA":