Search found 3 matches

by neunon
Wed Apr 14, 2010 10:41 pm
Forum: DS/DSi Development
Topic: libnds IPC - gone?
Replies: 6
Views: 11370

Re: libnds IPC - gone?

WinterMute wrote:If at all possible the best place to start is to remove the custom arm7 code and rework the project for arm9 only.
Don't you have to have both the ARM7 and ARM9 working in tandem to implement WiFi support in applications? Because that's the next step after debugging this thing.
by neunon
Wed Apr 14, 2010 10:39 pm
Forum: DS/DSi Development
Topic: libnds IPC - gone?
Replies: 6
Views: 11370

Re: libnds IPC - gone?

Well, here's the function I'm dealing with at the moment: void VcountHandler (void) { static int lastbut = -1; uint16 but = 0, x = 0, y = 0, xpx = 0, ypx = 0, z1 = 0, z2 = 0; but = REG_KEYXY; if (!( (but ^ lastbut) & (1 << 6))) { touchReadXY ( &tempPos ); if (tempPos.rawx == 0 || tempPos.raw...
by neunon
Tue Apr 13, 2010 10:44 pm
Forum: DS/DSi Development
Topic: libnds IPC - gone?
Replies: 6
Views: 11370

libnds IPC - gone?

Hi all, A friend and I are working on taking up development of the seemingly abandoned DScent project (DS port of Descent). We grabbed the latest source we could find and tried to compile it. Unfortunately, the code makes use of some things which are now gone in more recent libnds versions. For inst...