Search results

  1. C

    Gp And Gph

    I was reading the N64 post, and read .. Could someone clear this up for me? Is he talking about the XGP? (Which is GP next handheld?) Or another handheld? I thought the two companies were completly seperate? Mike
  2. C

    Dynarec Completed For Psx4all Project.

    Reading these results and trying to understand them.. The vsync is the number of frames its drawing onto the screen, where its changed or not. So this is the maximum current FPS. So Ridge Racer Type 4.. Intro.. 26 + 39 / 2 =~ 32. 3 + 7 / 2 = 5. ratio of 5:32. Which says to me that its the...
  3. C

    GP2X Fixed Math Divide

    Yep, 34. Is correct. Its to do with the data size.
  4. C

    GP2X Fixed Math Divide

    Noted and edited
  5. C

    Running Roms From Ext Hdd

    You could link the two folders, The location is prolly /mnt/sda/ to link two folders, ln -s /mnt/sd1 /mnt/sda as long as the card folder is /mnt/sd1 and the ext drive is /mnt/sda Mike
  6. C

    GP2X Fixed Math Divide

    Hi all, Been looking into the squidgeSnes code again, and noticed that the ticks stuff is constaint, or could be. Fixed Point Divide Function #define div(a,b) (int) ( ((((2^32)+b-1) / b) * (a)) / (2^32) ) Add to the minlib //predefined.. so no math done here =) #define ticks_per_second...
  7. C

    Hardware Coding

    Ok, im very new to this =) Could someone help me? Ive got the manual above /\... and im trying to understand it abit... Lets take the contrast as an example... (p434). I presume that the 0-2 bits are the contrast settings. with a value of 0-7 (so 3bits).. Now how exactly do i access that? Mike
  8. C

    Hardware Coding

    Thanx for that.. im sure ill be bugging all for more help later!
  9. C

    Hardware Coding

    Is there any other places i can get information from? as http://wiki.gp2x.org/ is still down. Cheers
  10. C

    Hardware Coding

    Which is missing =)
  11. C

    Hardware Coding

    Hi there, Could someone point me in to the best place(s) of a list of what hardware there is avaible, what it can do and a small tutorial of how it works? Id like to learn about all hardware stuff the GP2x can offer, such as the blitter, sound, LED, etc.. Cheers Mike
  12. C

    Snes Emus

    Do you know what version of snes9x it uses?
  13. C

    What All Can I Do With Ssh?

    Sure To be able to run something on the GP2X, you would have to install the SSH deamon. I believe it uses the busybox distro, and i think there is a deamon for it. - I have no idea how easy/hard it will be to add it in. once (and if) you get it running on the GP2x, you can then do (from your...
  14. C

    What All Can I Do With Ssh?

    SSH is a Secure SHell. If your GP2x has the ssh deamon running, it will enable you to tunnel over to your gp2x and use the terminal to do... well anything. If your a developer, this will be very useful, as you can use it to get debug information and error reports. Normal users could use it as a...
  15. C

    Designing The Gp2x's Successor - Hardware Selection Poll

    I think that there is so many people in this forum that know what there talking about, GPH would be stupid not to make the design proccess for the GP3x "Open source" as well. I suggest, and HOPE that GPH (in a few years when they decide to make a new handheld) Post some of there final...
  16. C

    GP2X Ann: Libgp2x

    Its flips the Horizontal (i think?). It (should) flip any rectanglar area of the buffer. e.g { 1,2,3 4,5,6 7,8,9 } should become { 3,2,1 6,5,4 9,8,7 } Mike I think it needs an offset value for the X, so at the mo its only for the whole screen.
  17. C

    GP2X Ann: Libgp2x

    #define SWAPm(a, b, c) (((a) == (b)) || (((a) ^= (b)), ((b) ^= (a)), ((a) ^= (c)))) // DEBUG printf("x: %d, data[%d]: %d, data[%d]: %d\n", x, x - 1, snip[x - 1], wd - x, snip[wd - x]); void gp2x_hflip15(gp2x_rect *r) { unsigned short *data=(unsigned short *)r->data, *snip = NULL; unsigned...
  18. C

    GP2X Ann: Libgp2x

    I think we see a gp2x library differently, altho you are correct. I see it as more as an abstract layer, that intergrates into the program alot more than something u link to and call functions from. with the gettimeofday() thing, r's minimal has a tick function which would be "better"? Its...
  19. C

    GP2X Ann: Libgp2x

    Hi there, I've looked over your code. Its not bad, Ive been currently working on improving the minimal lib code, I also found the code a bit messy. My current plans are to intergrate compile options into the lib, (Such as -DBLIT -DSOUND etc) to give it a bit more flexability, and to just...
  20. C

    GP2X Squidgesnes_0.37 Code Comments

    you do currently use the second proccessor? Mike
Back
Top