Added z80 port (links, may not work). mcs51 still works.
[fw/sdcc] / src / mcs51 / main.c
1 #include "SDCCglobl.h"
2 #include "main.h"
3
4 /* Globals */
5 PROCESSOR_CONSTANTS port = {
6     "MCU 8051",                 /* Target name */
7     {   
8         "asx8051",              /* Assembler executable name */
9         "-plosgffc",            /* Options with debug */
10         "-plosgff",             /* Options without debug */
11         FALSE                   /* TRUE if the assembler requires an output name */
12     },
13     {
14         "aslink",               /* Linker executable name */
15     },
16     {
17         /* Sizes: char, short, int, long, ptr, fptr, gptr, bit, float, max */
18         1, 1, 2, 4, 1, 2, 3, 1, 4, 4
19     },
20     { 
21         +1, 1, 4, 0, 0
22     },
23     /* mcs51 has an 8 bit mul */
24     {
25         1
26     }
27 };
28