Move emulator.py into root directory.
This commit is contained in:
parent
90d99170ab
commit
fa57a727c1
|
@ -5,14 +5,14 @@ Main module of the program.
|
||||||
|
|
||||||
This module is the one that should be run, e.g.::
|
This module is the one that should be run, e.g.::
|
||||||
|
|
||||||
$ ./llvm--emulator.py
|
$ ./emulator.py
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
import stepper
|
import llvm_emulator.stepper as stepper
|
||||||
import parser
|
import llvm_emulator.parser as parser
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
|
@ -3,7 +3,7 @@
|
||||||
import ply.lex as lex
|
import ply.lex as lex
|
||||||
import ply.yacc as yacc
|
import ply.yacc as yacc
|
||||||
|
|
||||||
import ll
|
import llvm_emulator.ll as ll
|
||||||
|
|
||||||
|
|
||||||
class LLVMParser(object):
|
class LLVMParser(object):
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
|
||||||
import ll
|
import llvm_emulator.ll as ll
|
||||||
|
|
||||||
|
|
||||||
def TODO(msg):
|
def TODO(msg):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user