1
0
infernal-interpreter/infernal.py
Jon Michael Aanes 8b146efe68 Added Junk value, for which all operations are
defined to produce junk.
Any comparison involving junk triggers the i status register.
Any conditional jump triggered when the i register is true,
triggers a python level exception.
2015-12-19 16:55:14 +01:00

11 lines
194 B
Python

import sys
import getopt
from Emulator import Emulator, CodeParseException
from TikzPainter import TikzPainter
from Junk import Junk, JunkComparisonException
if __name__ == "__main__":
pass