Search results

  1. R

    Pandora Pandora As Rov Controller

    you just *can't* control me
  2. R

    Gambro Nxgp

    the dual boot also will be very good, hope anyone will done same thing on the wiz, i remember me the 1/4 second booting of yAnl (at *only* 133mhz and 75ko/sec read speed on smc) ^^ linux is maybe really great for fast port but it's sucks on a small platform like this, how ? the time i'll go to...
  3. R

    Gambro Nxgp

    for port coding it's maybe bad but for original games it's not i was love blit with colon on my olg gp :- )
  4. R

    GP32 A Fix For Mirko Smc Lib ?

    hi xizal sorry but for now there is nothing available, i got a sentimental storm and failure in my life :-/ the basis are ok, but it's still in work .. but i'll get in future some new time to spare on it :)
  5. R

    GP32 A Fix For Mirko Smc Lib ?

    frodo source seen to be great :D the smc lib is the samsung one, i need to try if these release work. also there is some low level code for screen and sound thanks! squidge, you can't give me your code, no problem, but can you give me the read write smc block routine ? if a day i want made a...
  6. R

    GP32 A Fix For Mirko Smc Lib ?

    for now i use gcc with devkitarm, but i can switch to ads
  7. R

    GP32 A Fix For Mirko Smc Lib ?

    > I thought the problem only occurred on certain compilers. no, it does the same with compiled exemple of mirko i'll try to ask rlyeh, thanks
  8. R

    GP32 A Fix For Mirko Smc Lib ?

    hi all! ok, i actually made a multiplateform sdk, and for the gp part, i need to get a smc lib i try the mirko one, with all release i found, fclose take 10~30 second to close a file if we write inside !! i try to use the gamepark one, but i failed to mix the two sdk :/ after some debug of...
  9. R

    GP32 Using C++ In The Gp32

    C++ with official sdk work, yAnl is write with that, using ads (arm developer suite) there aren't new and delete, but class and other stuff work fine i don't know how rewrite a new operator but you can replace it with that : patterns = (pattern *)malloc(numPattern*sizeof(pattern)) ; // alloc...
  10. R

    GP32 Xm-tracker For Gp32 In Dev?

    try to port minifmod, it only play xm :] http://fmod.org/fmoddownload.html#secc
  11. R

    GP32 Xm-tracker For Gp32 In Dev?

    thanks a lot :) not any money to get a new and with my small Gmineur i'll win nothing at adic so ..
  12. R

    GP32 Xm-tracker For Gp32 In Dev?

    that what i do in yAnl, it's very basic but you can change and save mods all you can do is navigate in the mod, lock play on a pattern, mute channels, copy/paste a single note or many note, and up or down frequency of a note good for 2 minuts of fun =) i don't think i'll finish it a day (my...
  13. R

    GP32 Memcpy Performance

    i see memcpy is slow when i made my blit system check your alignement, if it's 4 byte aligned, copy by int, else by short also check the size and copy multiple group of pixels ex : if(!((int)screen&3)) // 4 bytes aligned { if(size > 15) { int nb = size>>4; // how many group of 8 pixels to...
  14. R

    Gizmondo

    > And I don't even think it's open source... at you to say TT to open it to the homebrew http://petitiongizmondo.euro.st/ or http://procvor.free.fr/gizmondo/
  15. R

    GP32 Simple Xm Player

    i wasn't know that, great !! :) i must find a new gp
  16. R

    GP32 Simple Xm Player

    xm got 16 bit samples, mod is limited to 8 bit, and convert 16 to 8 suxx a lot :/ > I tried to compile libmikmod port but I failed me too, don't know how link my project with the lib included in the codewarior project who's with the source :/ > chn had a working version of the mod lib but with...
  17. R

    GP32 Speed Of 16bit Colour Mode

    if you want fast routine, you can try to use blit system of Gdl2 assuming draw 20000 32² transparent sprite in 666 ticks without any clipping ~800 tick with all clipping it work on gp sdk but not really use it, must work fine with mirko, just link the framebufer with the function. but there...
  18. R

    GP32 Loading A Gif

    yet in fact in yAnl i not use the .h, only include the .c i think the .h was got the original struc and i copy and change it in the .c so, you can del the .h :)
  19. R

    GP32 Loading A Gif

    you can found the 16 bit version onto the aquafish page :) http://egloo.fr.st/ but it will crash on loading an animated gif it was crash due to the lib read an short at an unaligned address the fix : (*gif).width = (*fpt) + 256*(*(fpt+1)); fpt+=2 ; (*gif).height = (*fpt) + 256*(*(fpt+1))...
  20. R

    GP32 Loading A Gif

    to load a gif, use the gpgif lib palette suxx for some img but it's work i fix the lib to not crash on loading an animated gif, now it's load the first frame i also made change to load the img into an 8 bit array (original load into a 16bit) to see speed, load a gif with yAnl (it run at 33mhz...
Back
Top