Search results

  1. L

    Gbax 2005 Reactions & Reflections

    if you press start+select, AW quits. dont worry about the malloc error, it nevers happends when playing, only when the game shutdown
  2. L

    GP32 Rtems For Gp32

    no,no i didnt forget headers... prototype for lcd.c are in bsp.h
  3. L

    GP32 Rtems For Gp32

    Hi all, i've been working for a time now on gp32 bsp for rtems... and it's running great :) so, first things first, what's rtems? rtems is a very small (<70ko) executive RTOS, which means each rtems-application is linked with the rtems-os. which means rtems is not a multi-process OS, but still...
  4. L

    GP32 Dynamic Linking Libraries Support.

    dynamic libraries, is really somthing that needs an OS. You just cant load the object file and then jump in a function... The whole object file has to be parsed to change each of the external and internal references. Ex: let say, you main apps take the firsts 100k of ram, and let say the dynamic...
  5. L

    GP32 Games Designing Packages

    in fact there is way to make some hardware srolling... you have to play with the buffer address registers... take a look at mr.spiv web site
  6. L

    GP32 Shifting Bits

    i dont have a clue for this... if you want some, you should check s3c400 ref and arm asm ref manuals. i think you could find it on mr.spiv home page loki
  7. L

    GP32 Usb Coms

    mmmh, if you are using linux, you can emulate a tty over usb, and so using minicom as a terminal. you should take a look at linux kernel, there is some samples of this somewhere in the source tree loki
  8. L

    GP32 3d Routines/engines To Use

    here is a great introduction and tips for small3d engines (there is even sources) flipcode
  9. L

    Rogue For Gp32

    this port rocks man! i really enjoy playing rogue on my gp32! still i didnt play this game before. keep up the good work man!
  10. L

    GP32 Elf Files

    ok here is start.S and link script i'm using... do you think there is a chance it could workd? /* * Cogent CSB336 startup code * * Copyright (c) 2004 by Jay Monkman <jtm@lopingdog.com> * * The license and distribution terms for this file may be * found in the file LICENSE in this...
  11. L

    Batch Files Help

    lol if your network college is on Windows NT you can use net send * "f!ck u all!" in a loop but i dont think network admins will like that
  12. L

    GP32 Elf Files

    no this has nothing in common with linux library file. the way eCos runs is different from linux, each apps is embeded with a litle OS, so all i need is a way to build some kind of gxb file to runs eCos. that way each apps+eCos could be loaded with the Gamepark Free Launcher. (i dont need a...
  13. L

    GP32 Elf Files

    ok thank you
  14. L

    C-dogs Port

    i think there is a copy on PDROMS
  15. L

    GP32 Elf Files

    well i need some more weekends to finish this (and i'll be on hollydays from tomorrow) so dont except results soon... lot of things left to do/learn btw:i'm not trying to write a gxb launcher, i'm trying to undestand how the bios applauncher works to build a valid gbx file.
  16. L

    GP32 Elf Files

    just one more thing. how the applauncher loads gxb in memory? does it use the firsts pointers to copy section to their rights locations, or does it simply make a raw copy of the gxb at 0x0c000000? how does the applauncher choose the address for entry point? where in the gxb should the header...
  17. L

    GP32 Elf Files

    ok thanks
  18. L

    GP32 Elf Files

    thanks you mean this? this should only be at +0x04 (since first instruction is a branch)? .word __text_start @ Start of text (Read Only) section _roe: .word __ro_end @ End " _rws: .word __data_start @ Start of data (Read/Write) section .word __bss_end...
  19. L

    GP32 Elf Files

    i'm still (slowly) trying to port an embedded os(eCos) for the gp32 i think i've gathered all the pieces to make an simple test (but hadn't the time to put them together yet) but i have some question still remaining... the building process use its own toolchain (an...
  20. L

    GP32 Having Trouble With Mr. Mirko's Sdk (sorry!)

    check this thread devkitARM
Back
Top