Skip to content

openlabun/MIPSVisualSim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MIPS Visual Simulator (Pipeline)

A javascript based MIPS simulator that can simulate the MIPS assembly code.

To run on dev mode, run the following command

 cd app
 nmp install
 npm run dev 

To deply the app, run the following command

 docker build -t mipsvisualsimi .
 docker run -d -it -p 80:3000 --restart unless-stopped --name mipsvisualsim-app mipsvisualsimi

Test instructions

addi t0 t0 0x0001
addi t1 t1 0x0002
addi t2 t2 0x0003
addi t3 t3 0x0004
addi t4 t4 0x0005
add t0 t0 t0
add t1 t0 t0
add t2 t1 t1
add t3 t2 t2
add t4 t3 t3