From e7638887fd58634aa288998f95cdef10327ffad0 Mon Sep 17 00:00:00 2001 From: cfreksen Date: Tue, 31 Oct 2017 19:52:08 +0100 Subject: [PATCH] Move emulator back into package directory. --- emulator.py => llvm_emulator/emulator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename emulator.py => llvm_emulator/emulator.py (93%) diff --git a/emulator.py b/llvm_emulator/emulator.py similarity index 93% rename from emulator.py rename to llvm_emulator/emulator.py index 1138752..a309b6a 100755 --- a/emulator.py +++ b/llvm_emulator/emulator.py @@ -11,8 +11,7 @@ This module is the one that should be run, e.g.:: import argparse -import llvm_emulator.stepper as stepper -import llvm_emulator.parser as parser +from llvm_emulator import stepper, parser def main():