| View previous topic :: View next topic |
| Author |
Message |
marco0009
Joined: 16 Jun 2005 Posts: 1
|
Posted: Mon Jun 20, 2005 4:10 pm Post subject: MIPS Resources? |
|
|
I'm wondering if anyone knows of any good MIPS coding resources. I know C++ pretty well, but assembly is foreign to me and I'm eager to learn more about the PSP and the work going on with it right now. If anyone knows of any decent websites or books detailing MIPS, please post.
Thanks. |
|
| Back to top |
|
 |
chaos
Joined: 10 Apr 2005 Posts: 135
|
|
| Back to top |
|
 |
Guest
|
|
| Back to top |
|
 |
Warren
Joined: 24 Jan 2004 Posts: 173 Location: San Diego, CA
|
Posted: Mon Jun 20, 2005 7:22 pm Post subject: |
|
|
| chaos wrote: | | mips assembly is not a friendly language.. even the official documentation will tell you that it wasn't designed for coding in, and you'd be better off using a compiler.. |
I'd like to know what you're smoking. I learned ASM on MIPS and it's a damn site easier than hand coding x86 ASM. You have to have a working knowledge of ASM for the platform you're coding for in order to be a decent developer (unless you're one of those people who feels that using a debugger is for lesser people and instead stick billions of printfs in your code).
Anyway, sorry for the rant but I had to cut down this FUD before going to bed. |
|
| Back to top |
|
 |
Guest
|
Posted: Mon Jun 20, 2005 7:31 pm Post subject: |
|
|
Well, I do have to agree with Warren. Before MIPS, the last time I did assembly was 6502 about 20 years ago. MIPS was a breeze to pickup. It really is easy. I took at peek at x86 and...ran...
Oh yes, did a touch of VAX assembly in college, but nevermind that... it wasn't terribly useful.
One neat trick for beginners is to write very small c/c++ programs and use gcc -S to see the ASM output, but I daresay its hardly necessary. |
|
| Back to top |
|
 |
mrbrown
Joined: 17 Jan 2004 Posts: 1536
|
Posted: Mon Jun 20, 2005 7:51 pm Post subject: |
|
|
| Warren wrote: | | chaos wrote: | | mips assembly is not a friendly language.. even the official documentation will tell you that it wasn't designed for coding in, and you'd be better off using a compiler.. |
I'd like to know what you're smoking. I learned ASM on MIPS and it's a damn site easier than hand coding x86 ASM. You have to have a working knowledge of ASM for the platform you're coding for in order to be a decent developer (unless you're one of those people who feels that using a debugger is for lesser people and instead stick billions of printfs in your code). |
Indeed, they taught us MIPS asm in college, and this was waaay back in 2000. |
|
| Back to top |
|
 |
ReKleSS

Joined: 18 Jun 2005 Posts: 73 Location: Melbourne, Australia
|
|
| Back to top |
|
 |
|