Answer the question
In order to leave comments, you need to log in
How to execute an assembler command in Java or C++?
The function is passed a string containing a string with an assembler command (for example, "add r0, r1"), you must execute it. How can I do that? Is there any library to perform assembler inserts from a string? Is there no, how best to do it yourself? Or just a switch with a bunch of cases:
switch(asmComStr){
case "mov":
//mov
break;
case "add":
//add
break;
}
? And also with parameters. Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question