Search results

  1. erana

    wiiujoker - emu and C compiler

    Hello, I am working on a compiler and small emulator based on libwiiu. The GUI will be done in cairomm, you can fetch preliminary code at http://erana.yellowcouch.org/wiiu/ All the best! erana
  2. erana

    Hacking libgpg-error, libgcrypt and guile 1.3 ported to psp toolchain

    Hi, I put some of my old ports of PSP software on http://erana.yellowcouch.org/psp/ The're GNU libraries which are ported to psp-gcc including a fancy guile 1.3.4, which works on a psp terminal if you find one. Back in the day no newer version of guile could be ported, note that these packages...
  3. erana

    Hacking libgpg-error, libgcrypt and guile 1.3 ported to psp toolchain

    NOTE : I posted this to the wrong group, please follow the thread on PSP hacking & homebrew forum. Hi, I put some of my old ports of PSP software on http://erana.yellowcouch.org/psp/ The're GNU libraries which are ported to psp-gcc including a fancy guile 1.3.4, which works on a psp terminal...
  4. erana

    libpng 1.6.21 port to WiiU filesystem functionality

    I ported some code from Loadiine to the libpng library which is used for the Wii by devkitpro.org. I put in an open and read function which loads from an already mounted filesystem on the WiiU to a png structure. It remains untested but the code is at http://erana.yellowcouch.org/wiiu/ (search...
  5. erana

    Blog: erana

    Blog: erana
  6. erana

    Start of WiiU homebrew programming

    I made a wiiu section at my site for my software WiiU related. I started out on a small library which can read in png files with their filename and then display them. I cannot use newlib's filehandle (FILE * in C) system so I need to have a special purpose program for that. I looked into the...
  7. erana

    Hacking libwiiu FS extensions (extracted from Loadiine)

    Hello, if I am correct there are file open and reading functions in the Loadiine source code which can be put inside libwiiu. I got these magic numbers from the Loadiine code : #define FSOpenFile ((void (*) (FSClient *pClient, FSCmdBlock *pCmd, const char *path, const char *mode, int *handle...
  8. erana

    ROM Hack dwarrendelf - non-image buffered GBA ROM game

    See http://sf.net/projects/dwarrendelf
  9. erana

    Hacking png filename loader for WiiU - does not work as FS is incomplete

    Hello, I wanted to release this early and often, I made png filename to color buffer image code preliminary for the WiiU. There is no file support yet for the WiiU to load png files but maybe someone can find some use in the png file encoder. I put the source here ...