My code size is above 64k so now I need to do code banking. Using the Cygnal IDE I fit my .OBJ files in banks 0, 1, and 2. Don't need bank 3 yet. My question is, after I compile I get a an executable (or byte code, or 8051 machine code) file that I can download. But my bootloader uses the HEX file format. Since my executable is "banked" now, can I still simply run the OH51 program over my executable binary to create a single HEX file? Or MUST I use the OC51 program on the binary to create the banked object files, and then use OH51 on each bank object file to create multiple HEX files? And if this is necessary, how can I combine the HEX files so that I only have a single HEX file. My bootloader only works with a single HEX file. If the files *are* combined into a single HEX file, how will my bootloader know which bank to write the bytes? Or would it be easier to modify my bootloader to accept 4 HEX files and specify which bank they go into?