Search results

  1. S

    GP2X Gp2x Developer Needed For Calculation Program

    why bother, jEdit can do this stuff.
  2. S

    GP2X Eclipse Ide

    as for debugging i've posted on http://archive.gp2x.de a GDB version built on Windows to target the GP2x, and a gdbserver that can be launched on the gp2x. Now Eclipse can effectively debug Gp2x applications, but the deployment and start of gdbserver has to be done manually, i was looking for...
  3. S

    GP2X Eclipse Ide

    you have completely and exactly demonstrated that jEdit is by far superior to Eclipse. Or not. ok now let the adults discuss about real things.
  4. S

    GP2X Eclipse Ide

    okay, you all vi, emacs, jedit or whatever users, this is not a talk about what's best. Eclipse CAN be set up to build GP2x games even if you think jEdit is better.
  5. S

    GP2X Eclipse Ide

    it's all as simple and easy as setting up a CodeBlocks devenv for example ^_^
  6. S

    GP2X Eclipse Ide

    have anyone tested the Eclipse IDE for dev'ing for the GP2x? i've tried it myself and got good results BUT i had to use many manual tricks to get it work properly. Any experience in using the managed Makefile type of project for building GP2x app's? if not, interested by a tutorial on how to...
  7. S

    GP2X Fixed Point Math

    template<int shift, bool IsSuperiorZero> unsigned int shiftWhateverTheSignIs(unsigned int); template<int shift> unsigned int shiftWhateverTheSignIs<shift, true>(unsigned int val) { return val << shift; } template<int shift> unsigned int shiftWhateverTheSignIs<shift,false>(unsigned int); {...
Back
Top