├── LICENSE ├── README.md ├── assets ├── development.png └── device.gif ├── bin ├── example.bin ├── example.c └── example.hex ├── evm-esp32.ino ├── include ├── opcodes.h └── vm.h ├── opcodes.ino ├── paper ├── ICEST-2022-5014.pdf ├── Integrating a Virtual Machine on a system-on-a-chip.docx ├── Integrating a Virtual Machine on a system-on-a-chip.odp └── diagram.drawio └── vm.ino /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/README.md -------------------------------------------------------------------------------- /assets/development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/assets/development.png -------------------------------------------------------------------------------- /assets/device.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/assets/device.gif -------------------------------------------------------------------------------- /bin/example.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/bin/example.bin -------------------------------------------------------------------------------- /bin/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/bin/example.c -------------------------------------------------------------------------------- /bin/example.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/bin/example.hex -------------------------------------------------------------------------------- /evm-esp32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/evm-esp32.ino -------------------------------------------------------------------------------- /include/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/include/opcodes.h -------------------------------------------------------------------------------- /include/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/include/vm.h -------------------------------------------------------------------------------- /opcodes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/opcodes.ino -------------------------------------------------------------------------------- /paper/ICEST-2022-5014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/paper/ICEST-2022-5014.pdf -------------------------------------------------------------------------------- /paper/Integrating a Virtual Machine on a system-on-a-chip.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/paper/Integrating a Virtual Machine on a system-on-a-chip.docx -------------------------------------------------------------------------------- /paper/Integrating a Virtual Machine on a system-on-a-chip.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/paper/Integrating a Virtual Machine on a system-on-a-chip.odp -------------------------------------------------------------------------------- /paper/diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/paper/diagram.drawio -------------------------------------------------------------------------------- /vm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bor0/evm-esp32/HEAD/vm.ino --------------------------------------------------------------------------------