Search found 5 matches

by saner
Thu Apr 19, 2012 8:19 am
Forum: devkitARM
Topic: IRQ BIOS handler
Replies: 3
Views: 6751

Re: IRQ BIOS handler

Nintendo DS with ARM9 processor.
by saner
Tue Apr 17, 2012 11:28 pm
Forum: devkitARM
Topic: IRQ BIOS handler
Replies: 3
Views: 6751

IRQ BIOS handler

Hi,

Where in memory is located IRQ BIOS handler? That handler then calls user code specified in vector table.

Thanks!
by saner
Sat Mar 03, 2012 4:53 pm
Forum: DS/DSi Development
Topic: arm9 and arm9lib templates
Replies: 1
Views: 4801

Re: arm9 and arm9lib templates

It is necessary to modify two lines in Makefile used by the application:

1. Add your project's directory to a list of directories with lib folder:

Code: Select all

LIBDIRS	:= $(LIBNDS) $(CURDIR)
2. Add name of your library to this line:

Code: Select all

LIBS	:= -lnds9 -lname_of_your_lib
And that is all!
by saner
Fri Mar 02, 2012 1:39 am
Forum: DS/DSi Development
Topic: arm9 and arm9lib templates
Replies: 1
Views: 4801

arm9 and arm9lib templates

I have a problem using arm9 and arm9lib templates provided with devkitPro. I've created a simple library using arm9lib template, then I placed .a file into lib folder inside a project based on the arm9 template. The functions defined in the library are not visible in the application. What is the ...
by saner
Fri Jun 03, 2011 7:35 pm
Forum: devkitARM
Topic: devkitARM internals
Replies: 1
Views: 4117

devkitARM internals

Hello, I'd like to understand how devkitARM works. I've run a few examples however there are no explicit information how NDS is initialized, how code is started etc. I've also checked makefiles, but they are quite complicated. Could anyone describe build process (what files, order, role) and boot ...