Tagged Questions
-1
votes
1answer
137 views
Understanding MIPS
I have a class where I'm learning MIPS and I have the following MIPS code:
.text
.globl main
main:
li $2, 5
syscall
addu $8, $0, $2
ori $2, $0, 5
...
1
vote
3answers
768 views
How to import a library into a Arduino program?
I have a Arduino program wich make use of the processing library.
The program code starts with
import processing.serial.*;
When I try to compile it with the Arduino compiler it crashes with
...