Skip to content

kimoktm/Mips-js-Simulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mips-js-Simulator

Mips Simulator Using Js

Paste the following example in the code area to get the final Registers table, Memory table and Instructions trace table.

Example Code:


  addi $a0 $a0 85
  addi $a1 $a1 5
  gcd : beq $a0 $a1 exit
  slt $t0 $a1 $a0
  bne $t0 $zero loop
  sub $a1 $a1 $a0
  j gcd
  loop : sub $a0 $a0 $a1
  j gcd
  exit : add $v0 $a0 $zero
  

About

Mips Simulator Using Js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published