Giter VIP home page Giter VIP logo

jsvm's Introduction

JSVM

Node.js CI Node.js CI Node.js CI

16 bit js virtual machine implementation

Memory model

Virtual CPU use:

  • RAM memory (memory size can be changed). Flat model, 0x0000 - 0xFFFF (Up to 64Kb).
  • Internal registers memory (access only via registers).

Flash memory now not used.

Register set

Actual information can be found here.

  • IP - Instruction pointer. Register value contains memory address of next command for executing.
  • AC - Accumulator.
  • SP - Stack pointer. Register value contains memory address of stack head.
  • Rx - some of general purpose registers.

Program execution

After CPU start IP register contain 0x0000 address, fetch instruction from RAM and start executing.

Stack

After CPU start SP register contain RAM memory size - 2 address. After push some data SP value decreased by 2 bytes and after pop - increased by 2 bytes.

Instruction set

Actual information can be found here.

Opcode Command Arguments Sample Description
0x00 NOP No operation
0x?? PUSH 0x???? PUSH 0x1234 Push 16 bit constant to stack
0x?? PUSH Rx PUSH R4 Push register value to stack
0x?? POP Rx POP R1 Pop value from stack to register
0xFF HLT Halt

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.