Add overlay file option to rgblink (-O)

This option takes a file and places fixed sections on top of it.
Should prove useful for patches and partial disassemblies.
This commit is contained in:
Sanqui
2016-03-28 01:02:05 +02:00
parent 2ea2e47231
commit 2e9c68f8c3
5 changed files with 74 additions and 12 deletions

View File

@@ -10,6 +10,7 @@
extern SLONG options;
#define OPT_SMALL 0x01
#define OPT_SMART_C_LINK 0x02
#define OPT_OVERLAY 0x04
enum eRpnData {
RPN_ADD = 0,

View File

@@ -2,6 +2,7 @@
#define RGBDS_LINK_OUTPUT_H
void out_Setname(char *tzOutputfile);
void out_SetOverlayname(char *tzOverlayfile);
void Output(void);
#endif