X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fopcodes.h;h=ef9aa6df8f1b123916b7efb2fc7c0f158bb1c207;hb=2daadb492b21a94a54c73b0d524b636d3e9da009;hp=606df950a7fc3f2c4c0423d9b75704add038c683;hpb=2504bb3d310627620c3575aff8481d1df3efd6ca;p=swftools.git diff --git a/lib/as3/opcodes.h b/lib/as3/opcodes.h index 606df95..ef9aa6d 100644 --- a/lib/as3/opcodes.h +++ b/lib/as3/opcodes.h @@ -489,12 +489,9 @@ code_t* abc_typeof(code_t*prev); code_t* abc_urshift(code_t*prev); #define urshift(method) (method->code = abc_urshift(method->code)) #define OPCODE_URSHIFT 0xa7 -code_t* abc_xxx1(code_t*prev); -#define xxx1(method) (method->code = abc_xxx1(method->code)) -#define OPCODE_XXX1 0x53 -code_t* abc_xxx2(code_t*prev); -#define xxx2(method) (method->code = abc_xxx2(method->code)) -#define OPCODE_XXX2 0x01 +code_t* abc_applytype(code_t*prev, int v); +#define applytype(method,v) (method->code = abc_applytype(method->code,v)) +#define OPCODE_APPLYTYPE 0x53 code_t* abc___break__(code_t*prev); #define __break__(method) (method->code = abc___break__(method->code)) #define OPCODE___BREAK__ 0xff