X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=as%2Fhc08%2Fasm.h;h=ad5f1714d70b1b39c5ed0e800545b4e2b47c8e92;hb=5e7a815ef82dacf659fdad6451a982842eb255a2;hp=c145aae46c3f44834002cf7dbb758aa2848464ea;hpb=9a62abdbae6dc14565e2d8b593f6716a90d08119;p=fw%2Fsdcc diff --git a/as/hc08/asm.h b/as/hc08/asm.h index c145aae4..ad5f1714 100644 --- a/as/hc08/asm.h +++ b/as/hc08/asm.h @@ -175,6 +175,9 @@ struct area #define A_XDATA 0100 /* external data space */ #define A_BIT 0200 /* bit addressable space */ +#define A_NOLOAD 0400 /* nonloadable */ +#define A_LOAD 0000 /* loadable (default) */ + /* * The "R_" relocation constants define values used in * generating the assembler relocation output data for @@ -329,7 +332,8 @@ struct sym #define S_ASCIS 26 /* .ascis */ #define S_FLAT24 27 /* .flat24 */ #define S_OPTSDCC 28 /* .optsdcc */ - +#define S_ULEB128 29 /* .uleb128 */ +#define S_SLEB128 30 /* .sleb128 */ /* * The tsym structure is a linked list of temporary @@ -588,7 +592,7 @@ extern VOID usage(); extern char endline(); extern char get(); extern VOID getid(); -extern int getline(); +extern int as_getline(); extern int getmap(); extern char getnb(); extern VOID getst();