Recent content by loby

  1. L

    Hacking Intro to DSTwo SDK

    Because the compiler is not perfect, and Some C++ library is not included, so C++ support is not very good. For the function of new and delete, you can try it in this way: inline void* operator new ( size_t s ) { return malloc( s ); } inline void* operator new[] ( size_t s ) { return malloc( s...
  2. L

    Hacking Stopping the DSTwo CPU?

    The SC has released a library which could make ds2 cpu to idle state. It will lower power consumption. library of entering idle in ds2sdk
  3. L

    Hacking Need detailed technical information

    As I know, tools\ds2_firmware.dat is the initial and communication code for ARM7/ARM9 interface. It seems that the file system3.dat has no use in program.
  4. L

    Hacking Supercard DSTWO SDK Released!

    Yeah, you are right, ds2_plug_exit(); still hangs. But the SDK files has been re-replaced again yesterday. This time the issue of hanging menu was not found.
  5. L

    Hacking Need detailed technical information

    I think you need to write a linux device driver for exchanging data with the sdk underlying drivers. You do not need to know how the underlying drivers communicate with the DS. In addition, you need to consider is what kind of root file system, ramfs may be the better choice. Maybe you need...
  6. L

    Hacking Supercard DSTWO SDK Released!

    The issue of hanging menu where we quit our homebrews has solved, the file of ds2sdk_v0.13beta.zip has been re-replaced, but it can not be seen as a new version.
  7. L

    Hacking Need detailed technical information

    In SCDS2, DS as a device of display and sound, the data transfer to DS through the audio channel and video channel.
  8. L

    Hacking Need detailed technical information

    The SCDS2 has mmu.
  9. L

    Hacking Sdk Development Environment Manual

    The previous vmwaretools-FC9.zip was damaged, now it has been repaired. In addition, the issues of BAD FILENAME is because the filename include chinese characters. Now an English version was attached. Here, I will tell you that you can use other version of fedora and VMware, but maybe you will...