gbadev.org forum archive

This is a read-only mirror of the content originally found on forum.gbadev.org (now offline), salvaged from Wayback machine copies. A new forum can be found here.

DS development > Assembly Question

#175550 - Alriightyman - Tue Dec 21, 2010 9:32 pm

How do you include binary data within an assembly file? I can't seem to find any information on this, although I remember seeing something like this about a year ago.

#175554 - Dwedit - Wed Dec 22, 2010 4:29 am

Due to a weird quirk, when you're using devkitPro's makefiles, GNU Assembler starts out in the initial directory of "build/". You need to include ../ in the path of your incbins to get out of the Build directory.
_________________
"We are merely sprites that dance at the beck and call of our button pressing overlord."

#175562 - Alriightyman - Tue Dec 28, 2010 5:50 pm

Ok, thanks.