I managed to download it via JTAG using my Segger J-Link interface. You can do it with "J-Link Commander" like this (i put a comment after each command, which you don't enter of course, just to make clear what it does):
Code: Select all
connect // then choose MAC7116 as device, auto IR-Len detection, 1000 khz JTAG-clock
halt // stop CPU
be // set to Big Endian mode (IMPORTANT!)
save c:\temp\pbl.bin 0, 5000 // load memory location 0x0000 0000 - 0x0000 4FFF and store it into a binary file at c:\temp
![Wink ;-)](./images/smilies/icon_e_wink.gif)
You could also use "J-Link Flash" or "J-Link Memory" tool for this task.
Hope this help somebody, sometime...