├── .gitignore ├── README.md ├── examples ├── hellow.asm ├── strrev.asm ├── test.asm └── toupper.asm ├── i4004web.py ├── intel4004_emu ├── __init__.py ├── consolex.py ├── executor.py ├── str_executor_facade.py └── translator.py ├── main.py └── test ├── test_assmbly.py └── test_str_executor_facade.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/README.md -------------------------------------------------------------------------------- /examples/hellow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/examples/hellow.asm -------------------------------------------------------------------------------- /examples/strrev.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/examples/strrev.asm -------------------------------------------------------------------------------- /examples/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/examples/test.asm -------------------------------------------------------------------------------- /examples/toupper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/examples/toupper.asm -------------------------------------------------------------------------------- /i4004web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/i4004web.py -------------------------------------------------------------------------------- /intel4004_emu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /intel4004_emu/consolex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/intel4004_emu/consolex.py -------------------------------------------------------------------------------- /intel4004_emu/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/intel4004_emu/executor.py -------------------------------------------------------------------------------- /intel4004_emu/str_executor_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/intel4004_emu/str_executor_facade.py -------------------------------------------------------------------------------- /intel4004_emu/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/intel4004_emu/translator.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/main.py -------------------------------------------------------------------------------- /test/test_assmbly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/test/test_assmbly.py -------------------------------------------------------------------------------- /test/test_str_executor_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAbbey/intel4004-emu/HEAD/test/test_str_executor_facade.py --------------------------------------------------------------------------------