JS Hypothetical Machine
Neander Machine with Extended Instruction Set.
Что такое JS Hypothetical Machine?
JS Hypothetical Machine - это расширение Chrome, разработанное https://www.dalmirdasilva.com, и его основная функция - "Neander Machine with Extended Instruction Set.".
Снимки экрана расширения
Скачать файл CRX расширения JS Hypothetical Machine
Скачайте файлы расширений JS Hypothetical Machine в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a simple computer simulator. There are a few simulator out there, but they are usually desktop programs, we need to download it, install it, and... usually it only runs in Windows environment. To be able to call procedures it needs to have stack and some extra instructions. Also I added some devices, which can be accessed by memory mapping. The simulator is able to be interrupted, I planned to add some input devices to use that functionality. Have fun.
Основная информация о расширении
Название | JS Hypothetical Machine |
ID | fceihaihbmjkpknodbbhckdaiijijegf |
Официальный URL | https://chromewebstore.google.com/detail/js-hypothetical-machine/fceihaihbmjkpknodbbhckdaiijijegf |
Описание | Neander Machine with Extended Instruction Set. |
Размер файла | 1.49 MB |
Количество установок | 29 |
Текущая Версия | 1.4.0 |
Последнее Обновление | 2015-11-30 |
Дата публикации | 2015-11-29 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://www.dalmirdasilva.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://www.dalmirdasilva.com/jshm |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JS Hypothetical Machine", "description": "Neander Machine with Extended Instruction Set.", "version": "1.4.0", "permissions": [ "http:\/\/www.dalmirdasilva.com\/jshm\/" ], "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "extension.js" ] }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |