├── CMakeLists.txt ├── LICENSE ├── README.md ├── img ├── photo_2022-01-15_04-35-41.jpg └── photo_2022-01-15_04-35-47.jpg ├── inc ├── asm_disasm.h └── kyiv.h ├── libs ├── komytators.txt ├── runge_kutta.txt └── sqrt_and_friends ├── mem ├── ROM.txt ├── magnetic_drum.txt ├── punc_cards_out.txt └── punched_tape.txt └── src ├── asm_disasm.cpp └── main.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/README.md -------------------------------------------------------------------------------- /img/photo_2022-01-15_04-35-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/img/photo_2022-01-15_04-35-41.jpg -------------------------------------------------------------------------------- /img/photo_2022-01-15_04-35-47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/img/photo_2022-01-15_04-35-47.jpg -------------------------------------------------------------------------------- /inc/asm_disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/inc/asm_disasm.h -------------------------------------------------------------------------------- /inc/kyiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/inc/kyiv.h -------------------------------------------------------------------------------- /libs/komytators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/libs/komytators.txt -------------------------------------------------------------------------------- /libs/runge_kutta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/libs/runge_kutta.txt -------------------------------------------------------------------------------- /libs/sqrt_and_friends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/libs/sqrt_and_friends -------------------------------------------------------------------------------- /mem/ROM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/mem/ROM.txt -------------------------------------------------------------------------------- /mem/magnetic_drum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/mem/magnetic_drum.txt -------------------------------------------------------------------------------- /mem/punc_cards_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/mem/punc_cards_out.txt -------------------------------------------------------------------------------- /mem/punched_tape.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/mem/punched_tape.txt -------------------------------------------------------------------------------- /src/asm_disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/src/asm_disasm.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucu-computer-science/Kyiv_emulator/HEAD/src/main.cpp --------------------------------------------------------------------------------