... Anything is fine. I try to catch myself anytime I get too worried about calling constructors, atexit, and what to do on exit because it really isn't an...
Jason Wilkins
fenix@...
May 1, 2003 11:18 am
14163
... are there linux based tools for uploading to flash2advance cards available ? david...
... thats the problem, i read some time ago that flashlinkeradvance carts are working with the mbv2. but currently they are sold out at lik-sang. despite of...
Hi people im new to the group and was wondering what you use for converting sound to C/C++ files i've heard that the program called 'Simon' works quite well...
I was stepping through the code of Pokemon Sapphire and I was especially interested in what Game Freak's interrupt routine looked like. It turns out that it...
Jason Wilkins
fenix@...
May 1, 2003 7:31 pm
14168
... And I keep reassuring them that after Sega v. Accolade, people who include logo data have nothing to worry about. ... If there's only one efficient way to...
... Many developers make/made the same mistake. I only handle the cart interrupt correctly in my most recent projects (i.e.: ISR in (IW)RAM and cart interrupt...
Jan-Lieuwe Koopmans
jan-lieuwe@...
May 1, 2003 8:52 pm
14171
... I wouldn't, Super Mario Advance was a launch title. The interrupt handling in crtls was not added until months later, if I recall correctly. (at least, i...
Jason Wilkins
fenix@...
May 1, 2003 9:21 pm
14172
... I found a bug in Wind Waker. Lost 2 hours of game time ^_^ Be careful you do not fall off a ledge at the same time that you get mail from a post box. ... ...
Jason Wilkins
fenix@...
May 1, 2003 10:07 pm
14173
What the heck is LSR_usr? I have found this register mentioned in two places. nocash's gbatek docs and [guess]. It exists nowhere else in the world...
Jason Wilkins
fenix@...
May 1, 2003 10:07 pm
14174
... I believe this too, but if Nintendo took you to court, it would be a huge hassle to get in front of a judge and tell Nintendo how mistaken it is. ... I...
Jason Wilkins
fenix@...
May 1, 2003 10:35 pm
14175
I was able to confirm that the interrupt code in crtls is indeed copied from Nintendo's very own 'reintr' sample program which demonstrates handling multiple...
Jason Wilkins
fenix@...
May 1, 2003 10:35 pm
14176
... Ever played "Golden Sun"? If you pak-swap from GS1 to GS2, it's rumored that you can keep your characters. "Banjo-Tooie" for N64 initially was going to...
So just to make sure I'm upto to date: Proper card interrupt handling: Copy your isr(interrupt service routine) to iwram/ewram Handle the card interrupt at...
From: "Willem Kokke" <wkokke@...> ... Looks ok. ... ... or whatever you think is appropriate ! I wonder if it would be feasible to just say "Please...
Jonathan Perret
jonathan.perret@...
May 2, 2003 11:49 am
14179
Hmm, would be interesting.. Does anybody know wheter you can distinguish between a insert card and remove cart interrupt?? What happens when you try to read...
... there's no need to handle game pak interrupt at highest priority. only one interrupt is handled per entry to the main ISR (for most usual setups), so ...
From: "matthew conte" <itsbroke@...> ... one ... I don't follow you. Do you mean that only one bit is ever set in IF when the BIOS calls the ISR...
Jonathan Perret
jonathan.perret@...
May 2, 2003 12:46 pm
14182
While we're on the subject of interrupts can anyone suggest a reason why I might be getting squeaks and splutters in the sound when I'm running multiplayer...
... I actually thought of a feature like this, but I didn't mention it because that is not what these games are trying to do. After doing some more...
Jason Wilkins
fenix@...
May 2, 2003 1:31 pm
14184
... I have not read the documentation, but I never thought about if another IRQ is generated when the cart, or a different cart, is inserted. I guess that it...
Jason Wilkins
fenix@...
May 2, 2003 1:48 pm
14185
... you could use sox http://sox.sourceforge.net/ or just about any sound editor to convert your sounds to gba format and choose a suitable sampling rate, then...
CK
x@...
May 2, 2003 2:21 pm
14186
When I store data to a cart address does this infact cause the agb to write to the flash cart or is something else required? (Intel Strata Flash) i.e....
Daniel
webmaster@...
May 2, 2003 2:44 pm
14187
... I think I see what you mean. If you have multiple interrupts enabled like how Nintendo has demonstrated, then a "lower priority" interrupt will still...
Jason Wilkins
fenix@...
May 2, 2003 2:50 pm
14188
Hey Rob, it looks like you might be experiencing what I hypothesized would happen if you use the multiple interrupt code. My theory is that the Multiple IRQ...
Jason Wilkins
fenix@...
May 2, 2003 2:56 pm
14189
I used to like the 68k method of 7 levels. I had no problems at all with that but this penny-pinching one-size-fits-all just seems like grief. ... From: Jason...
... When you can pick up a system for less than 50 bucks, how can you complain? ^_^ I really need some more details about what happens when an interrupt is ...
Jason Wilkins
fenix@...
May 2, 2003 4:15 pm
14191
I looked more closely at the BIOS interrupt handler and noticed that to load 0x03007FFC that it actually used 0x04000000 - 4 I guess doing it that way...