X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fport.h;h=8a21c5d841a341cd632853c026de78761fcf1cc1;hb=c2a0ea8e1e3331b8ea967a0c23cfaabf6fc33e59;hp=507f70f4711bbdd0bcde77b10462594f72d06e32;hpb=cb92c5560b3a8e137449448ed4d29771bdd28632;p=fw%2Fsdcc diff --git a/src/port.h b/src/port.h index 507f70f4..8a21c5d8 100644 --- a/src/port.h +++ b/src/port.h @@ -6,6 +6,7 @@ #define PORT_INCLUDE #include "SDCCicode.h" +#include "SDCCargs.h" #define TARGET_ID_MCS51 1 #define TARGET_ID_GBZ80 2 @@ -13,8 +14,6 @@ #define TARGET_ID_AVR 4 #define TARGET_ID_DS390 5 #define TARGET_ID_PIC 6 -#define TARGET_ID_I186 7 -#define TARGET_ID_TLCS900H 8 #define TARGET_ID_XA51 9 /* Macro to test the target we are compiling for. @@ -26,8 +25,7 @@ #define TARGET_IS_AVR (port->id==TARGET_ID_AVR) #define TARGET_IS_DS390 (port->id==TARGET_ID_DS390) #define TARGET_IS_PIC (port->id==TARGET_ID_PIC) -#define TARGET_IS_I186 (port->id==TARGET_ID_I186) -#define TARGET_IS_TCLS900H (port->id==TARGET_ID_TCLS900H) +#define TARGET_IS_XA51 (port->id==TARGET_ID_XA51) #define MAX_BUILTIN_ARGS 16 /* definition of builtin functions */ @@ -50,6 +48,9 @@ typedef struct /** Target name string, used for --help */ const char *target_name; +/** Specific processor for the given target family. specified by -p */ + char *processor; + struct { /** TRUE if all types of glue functions should be inserted into @@ -79,6 +80,8 @@ typedef struct int externGlobal; /* assembler file extension */ const char *file_ext; + /** If non-null will be used to execute the assembler. */ + void (*do_assemble) (const char * const*); } assembler; @@ -91,7 +94,7 @@ typedef struct const char *mcmd; /** If non-null will be used to execute the link. */ void (*do_link) (void); - /** Extention for object files (.rel, .obj, ...) */ + /** Extension for object files (.rel, .obj, ...) */ const char *rel_ext; } linker; @@ -181,6 +184,9 @@ typedef struct void (*init) (void); /** Parses one option + its arguments */ bool (*parseOption) (int *pargc, char **argv, int *i); +/** Optional list of automatically parsed options. Should be + implemented to at least show the help text correctly. */ + OPTION *poptions; /** Called after all the options have been parsed. */ void (*finaliseOptions) (void); /** Called after the port has been selected but before any @@ -199,6 +205,8 @@ typedef struct /* Write any port specific assembler output. */ void (*genAssemblerPreamble) (FILE * of); + /* invoked at end assembler file */ + void (*genAssemblerEnd) (FILE * of); /* Write the port specific IVT. If genIVT is NULL or if * it returns zero, default (8051) IVT generation code @@ -270,14 +278,11 @@ extern PORT ds390_port; #if !OPT_DISABLE_PIC extern PORT pic_port; #endif -#if !OPT_DISABLE_I186 -extern PORT i186_port; -#endif -#if !OPT_DISABLE_TLCS900H -extern PORT tlcs900h_port; -#endif #if !OPT_DISABLE_TININative extern PORT tininative_port; #endif +#if !OPT_DISABLE_XA51 +extern PORT xa51_port; +#endif #endif /* PORT_INCLUDE*/