Search results

  1. rlyeh

    GP2X Minimal Library Sdk V0.9 Out

    yep, that's it... declare both as unsigned long. minor bug :-)
  2. rlyeh

    GP2X Minimal Library Sdk V0.9 Out

    grab it from http://www.retrodev.info last changes: 0.9: initial FIFO message system for dual cpu cores. initial 48 Mb support. initial quadruple buffering in 8bbp mode. 0.8: initial dual cores cpu support. added very basic blit functions by popular demand;-)...
  3. rlyeh

    Windows Usb Driver

    Squidge, we'd like you to release both solutions... dunno why you ask such a silly question ;-)
  4. rlyeh

    GP2X Rlyeh's Minimal Sdk

    0.7 is out
  5. rlyeh

    Reminiscence-flashback Engine For Gp2x, V0.1 Beta

    Well, I think it's time to release my first GP2X binary, isn't it ? I've ported the amazing REminiscence engine as an exercise training to test & stress my minimal SDK libraries. The port itself is almost finished and its smooth as hell. It's only missing savestates and maybe slighty louder...
  6. rlyeh

    GP2X My Direct Gp2x Joystick Routines

    It handles all buttons & diagonals perfectly! Hope you like it! old link now moving to timers! /me having fun :-) EDIT: Much better handling support in this update. Enjoy it
  7. rlyeh

    My Frustrating Experiences With /dev/fb

    oh squidge, you're the man! thanks, i got it working! yahoo!
  8. rlyeh

    GP2X My Direct Gp2x Video Routines W/ Double Buffering

    http://www.rafb.net/paste/results/CQgFzn45.html thanks to Squidge and Robster! a lot!
  9. rlyeh

    My Frustrating Experiences With /dev/fb

    ok, i obtained the physical addresses by quering the fixed information from each framebuffer ioctl (fbdev[0], FBIOGET_FSCREENINFO, &fixed_info); smem_start[0]=fixed_info.smem_start; ioctl (fbdev[1], FBIOGET_FSCREENINFO, &fixed_info); smem_start[1]=fixed_info.smem_start; phys address of fb0...
  10. rlyeh

    My Frustrating Experiences With /dev/fb

    squidge, look at this void gp2x_videoflip(void) { u32 nBufferAddress; if(gp2x_screenc) { gp2x_screen[0]=(u16 *)0x40001000; nBufferAddress=0x40027000; } else { gp2x_screen[0]=(u16 *)0x40027000; nBufferAddress=0x40001000; } gp2x_screenc^=1; MSP_MLC_STL_OADRL = (unsigned...
  11. rlyeh

    My Frustrating Experiences With /dev/fb

    I've tried to do a double buffering code using ioctl() to use /dev/fb directly Here's my initial setup: struct fb_fix_screeninfo fixed_info; struct fb_var_screeninfo variable_info; int fbdev[2]; u16 *gp2x_screen[2], gp2x_screenc=0; fbdev[0]=open("/dev/fb0", O_RDWR)...
  12. rlyeh

    My Ioctl Soundring Buffer

    Here you have what i've been coding yesterday night My crystal clear soundring buffer using ioctl() You have to supply and call periodically sound_frame() (in each finished frame) Maybe someone would rather like to hang it up in a thread? Hope you like it... Feedback is welcome :-) PS: This...
  13. rlyeh

    GP2X Devkitgp2x First Cut

    Now we need someone to bring us a fresh libsdl, libpng, libjpeg, libsdlmain, etc... and done :) wintermute & djwillis & everyone involved... thanks a lot! :-)
  14. rlyeh

    Nk Was Close Released Neocd-metal 1 Only Emu.

    does not work for me i get a black screen when i execute the neocd.gpe i have all the metalslug files packed as neocd.zip at root folder i have installed and executed the libs gpu utility before launching the emulator any idea? edit: nevermind, got it working (install both libs files at SD...
  15. rlyeh

    Rlyeh Has Lost His Suitcase

    men dont backup btw, the suitcase is back, thankful god =)
  16. rlyeh

    Sd Card Initialisation

    pasting worked! :P U-Boot 1.0.0 (Oct 17 2005 - 15:56:00) U-Boot code: 03F40000 -> 03F95054 BSS: -> 03F989E8 DRAM Configuration: Bank #0: 00100000 63 MB Flash: 0 kB NAND:Probing at 0x9c000000 Flash chip found: Manufacturer ID: 0xEC, Chip ID: 0x76 (Samsung K9F1208 64Mb) 1 flash chips found...
  17. rlyeh

    Setting Clock Speeds

    btw, got bored & started modifing my pllset once again to include ranges here you have a nice list to cheat someday with it :-) notice that all these values are probably valid and fully working unless the system crashes due to the high speed, obviously :-) 13:34 29/10/2005 [3.4.2][WIN32_GCC]...
  18. rlyeh

    Sd Card Initialisation

    teraterm does not work either i assume the C106 resistor i lost while mounting my case has something to do here :P
  19. rlyeh

    Sd Card Initialisation

    it seems my gp2x cannot receive files through serial... cant send files... it says unknown command :P 115200, 8n1, no flush control, sending through kermit, hyperterminal, win XP sorry for not being useful at all
  20. rlyeh

    Setting Clock Speeds

    I always find quite annoying to look for the best values, so I've slighty modified pllset.c to show some suggested values, like this example: 13:04 28/10/2005 [3.4.2][WIN32_GCC] M:\tools\gp2x>pllset 200000000 +---------------------------------------+ | PLL VALUE CALCULATOR Ver...
Back
Top