I am trying to make the VC++6.0 to compile my code to a MIPS assembly so I could read it and copy that code.
Is there a way to do so ? if not, i开发者_开发知识库s there an other way under windows ? I am trying Cygwin but no clue how to deal with...
thnx.
Visual Studion basically only supports the targets that Windows run on, and MIPS is not included in this.
You will need a so-calles cross compiler. There are a number of such compilers out there, the most common one is gcc.
You will, however, have to run them from a command-line and not from within Visual Studio.
精彩评论