Git Product home page Git Product logo

c88-js's Introduction

#C88 computer Javascript emulator

This ia an emulator for the C88 computer.

A minimalist CPU architecture with only 64 bits of memory.

It is implemented in an FPGA using VHDL, it is available here: https://github.com/danieljabailey/C88

This is an emulator for that machine, implemented in javascript.

##Usage

Just open up the c88.html file and enter a program by clicking on the memory bits to toggle them.

Run the program with the run and step buttons at the bottom.

The reset button will set the PC and main register to zero.

##Library

c88.js is a file containing the emulator without the GUI. You can use this to make your own gui.

First get a c88 object like this:

	c = new c88();

Then you can set the memory which is an array of eight integers:

	c.mem=[224, 37, 6, 23, 64, 7, 1, 0];

Then run the program and update some kind of memory display:

	setInterval(
		function(){
			c.step();
			myDisplay = c.mem;
		},1);

c88-js's People

Contributors

lexbailey avatar aquila12 avatar

Stargazers

Pedro Casaubon avatar  avatar

Watchers

James Cloos avatar  avatar

Forkers

lexbailey

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.