I've just come across this bridge too. Have you discovered how to
cross it yet?
Thanks,
Dave
--- In gbadev@yahoogroups.com, "krozinsky" <krozinsky@a...> wrote:
> Hello,
>
> Using the code:
> void LZ77UnCompWRAM(u8* inBuffer, u16* outBuffer)
> {
>
> asm volatile("
> mov r0, %0
> mov r1, %1
> swi 0x11
> ":
> /* No output */ :
> "r" (inBuffer) , "r" (outBuffer) :
> "r0", "r1");
> }
>
> I can get the decompresstion to work correctly but it only works on
> the emulator not hardware.
>
> The code is in ROM and not moved to ewram/iwram.
>
> Any suggestions?
>
> Thanks