FRISCjs
FRISC processor simulator in JavaScript
Install / Use
/learn @izuzak/FRISCjsREADME
FRISCjs
FRISCjs is a FRISC processor simulator written in JavaScript.
<img src="https://raw.github.com/izuzak/FRISCjs/master/friscjs-screenshot.png" />The FRISCjs simulator has two parts: a FRISC assembler (built using PEGjs) which translates FRISC assembly code to machine code and a FRISC CPU simulator which executes machine code.
Furthermore, there are two user interfaces to the simulator: a Web application graphical interface and a NodeJS command-line interface. The Web application interface is available here and supports many cool features like breakpoints and step-by-step execution.
Usage
Using the assembler and simulator libraries
In node, install using npm:
> npm install friscjs
and then access the assembler and simulator:
var friscjs = require("friscjs");
var asm = friscjs.assembler;
var sim = friscjs.simulator;
In a browser, link to the browser script that contains both the assembler and simulator:
<script src="lib/friscjs-browser.js"></script>
and then access the assembler and simulator:
var asm = friscjs.assembler;
var sim = friscjs.simulator;
After installing the libraries, check out the FRISCjs API docs for instructions on using them.
Using the simulator console and Web applications
To use the Web-based simulator, launch the webapp/index.html page in a browser or access the on-line version at http://izuzak.github.com/FRISCjs/webapp/.
To use the console-based simulator application, clone the FRISCjs repo:
> git clone https://github.com/izuzak/FRISCjs.git
and then run the app with node to see the instructions:
> node ./consoleapp/frisc-console.js
Development
- Fork and/or clone repo:
git clone https://github.com/izuzak/FRISCjs.git - Change dir to noam:
cd FRISCjs - Install dependencies:
npm install - Make changes to noam sources (
./src), tests (./tests) or apps (./webapp/*and./consoleapp/*) - Build using grunt:
grunt(on linux),grunt.cmd(on windows) - Run tests:
npm test - Fix issues reported by grunt and tests, and then repeat 5)
- Commit, push and make a pull request, or send a git patch by e-mail
- E-mail me if you have questions (e-mail address is below)
Similar projects
This project was inspired by the GameBoy emulator in JavaScript and jsLinux projects. There are many other processor simulators in JavaScript, such as the GameBoy Color emulator, visual transistor-level simulation of the 6502 CPU, 6502 compatible assembler and emulator, PicoBlaze Assembler and Emulator in JavaScript, and this other 6502 CPU simulator.
Credits
FRISCjs was developed by Ivan Zuzak. Contributors: Ivan Budiselic, Stanko Krtalic.
FRISCjs is built with many open-source projects:
- PegJS - used for generating the FRISC assembly code parser.
- NodeJS - used for the command-line version of the simulator.
- jQuery - used for the Web application version of the simulator.
- Bootstrap - used for the Web application version of the simulator.
- Ace - used as the editor for the Web application version of the simulator.
- Mustache - used for client-side templates.
- Keymaster - used for reconfiguring/disabling keyboard shortcuts.
License
Licensed under the Apache 2.0 License.
Related Skills
proje
Interactive vocabulary learning platform with smart flashcards and spaced repetition for effective language acquisition.
YC-Killer
2.7kA library of enterprise-grade AI agents designed to democratize artificial intelligence and provide free, open-source alternatives to overvalued Y Combinator startups. If you are excited about democratizing AI access & AI agents, please star ⭐️ this repository and use the link in the readme to join our open source AI research team.
best-practices-researcher
The most comprehensive Claude Code skills registry | Web Search: https://skills-registry-web.vercel.app
groundhog
400Groundhog's primary purpose is to teach people how Cursor and all these other coding agents work under the hood. If you understand how these coding assistants work from first principles, then you can drive these tools harder (or perhaps make your own!).

