Dear Fabrizio,
the inclusión of MIPS assembler is on our TODO list.
While waiting for the next VPL release you can install spin on your execution
server and include this code in the vpl_run.sh at the execution files of your activity.
---------- vpl_run.sh -------------
#!/bin/bash
#load common script and check programs
. common_script.sh
check_program spim
get_source_files asm
cat common_script.sh > vpl_execution
echo "spim -file $VPL_SUBFILE0 | tail -n +6" >> vpl_execution
chmod +x vpl_execution
---------- vpl_run.sh -------------
Notice that this code presupposes that you are using "asm" as file extension. This is because the similar syntax highlighter is asmx86, but we will use ".s" extension for auto detect the MIPS assembler code.
Best regards,
Juan Carlos.