Page 1 of 1

systemSleep

Posted: Mon Apr 26, 2010 9:10 pm
by z.g
\libnds\source\arm7\system.c:

Code: Select all

    //100ms
    swiDelay(838000);
\libnds\source\arm9\system.c:

Code: Select all

   //100ms
   swiDelay(419000);
logically arm9 two time faster so delay must be two times bigger for same delay. actually it smaller. so real delay on arm9 side — 25ms. so possible mistake here.

Re: systemSleep

Posted: Mon Apr 26, 2010 9:48 pm
by elhobbs
I think the number is a loop counter not a direct meaurement of time

Re: systemSleep

Posted: Tue Apr 27, 2010 11:45 am
by z.g
elhobbs wrote:I think the number is a loop counter not a direct meaurement of time
it is.

Re: systemSleep

Posted: Tue Apr 27, 2010 2:02 pm
by elhobbs
z.g wrote:
elhobbs wrote:I think the number is a loop counter not a direct meaurement of time
it is.
yeah, i guess that would support your point rather than disprove it.