vote up 0 vote down star
1

I'm currently working on a Mips Code Generator for my Pascal Parser (Written in C using Lex / Yacc) . Does anybode know of a Tool out there I can use as a reference in order assure correct Code Generation?

flag

2 Answers

vote up 1 vote down check

Here is a mips simulator. I used it in school to check and run my mips projcets. One thing I remember is that this simulator has a few commands(to make it easier on us students) that real mips compilers don't. I am pretty sure it is all documented tho.

link|flag
Thanks for that! But I was looking for something like: I enter a pascal code in the program and it returns the according Mips code. – Chris Jan 12 '09 at 14:10
There isn't a 1:1 relationship between source and generated assembly, particularly if an optimiser is involved. – ConcernedOfTunbridgeWells Jan 12 '09 at 15:30
vote up 0 vote down

You can build the GNU Pascal Compiler for a MIPS target, as a cross-compiler.

link|flag
It seems that he's actually writing a compiler, so your answer might not be so helpful. – KovBal Mar 24 at 19:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.