feat: Added readme and license information and renamed opcode_names file

This commit is contained in:
2020-02-03 20:06:31 +01:00
parent 4ed2215c3f
commit 58a40f3a24
5 changed files with 36 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
from .opcodes_names import INSTRUCTIONS
from .opcode_names import INSTRUCTIONS
class PJVMException(ValueError):

View File

@@ -7,7 +7,7 @@ from .exceptions import *
from .mockimpl import mock_instance_methods, mock_static_objects
from .old_jtypes import JArray, JObj, JString
from .opcodes import OPCODE_TYPE, Opcode
from .opcodes_names import INSTRUCTIONS
from .opcode_names import INSTRUCTIONS
from .stackframe import Frame
LOGGER = getLogger(__name__)