When you clone a notebook you are able to make changes without affecting the original notebook.
xxxxxxxxxx
// http://dmitrysoshnikov.com/compilers/mips-assembly-parser/
const MIPSParser = require('mips-parser');
const code = `
li $v0, 4
la $a0, message
syscall
`;
MIPSParser.parse(code);
xxxxxxxxxx
Created from: https://runkit.com/npm/mips-parser
sign in to comment