X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fxa51%2Fgen.h;h=fec9e0c3c0c598f8b5c8dd4fdd33e5f789b0d0ad;hb=1efca62b20292a5ee6595f5ccab4337f6b38a374;hp=bd4512418bbfc800dd3c590554b2e8c75198d41a;hpb=c446f6b6ad7298f2f8249f2874cd25e9d64bbf21;p=fw%2Fsdcc diff --git a/src/xa51/gen.h b/src/xa51/gen.h old mode 100755 new mode 100644 index bd451241..fec9e0c3 --- a/src/xa51/gen.h +++ b/src/xa51/gen.h @@ -32,9 +32,10 @@ enum AOP_DIR, AOP_FAR, AOP_CODE, - AOP_STK, + AOP_GPTR, + AOP_STK, AOP_IMMD, - AOP_CRY + AOP_BIT }; /* type asmop : a homogenised type for @@ -49,6 +50,7 @@ typedef struct asmop { AOP_DIR - direct, just a name AOP_FAR - AOP_CODE - + AOP_GPTR - AOP_STK - on stack (with offset) AOP_IMMD - immediate value for eg. remateriazable AOP_CRY - carry contains the value of this @@ -62,4 +64,6 @@ typedef struct asmop { #define AOP_SIZE(x) x->aop->size #define AOP_NAME(x) x->aop->name +void xa51_emitDebuggerSymbol (char *); + #endif