语法: bit_set(var, bit)

BIT_SET()是PIC CCS编译器中PIC单片机的专有函数。

语法:   bit_set(var, bit)

参数:   var可能是一个8,16位或32位的变量(任意的整型变量);bit0~31中的一个数,表示1位数.0是最小的一位,也是最重要的的一位.

返回值: 没有

功能:   只是将所给的变量指定的位(0~7, 0~15, 0~31)进行置1.该函数相当于var|=(1<<bit). 最小的一位,也是最重要的的一位是0.

有效性: 适合所有设备.

要求:   没有

例子:   int x;

        x=5;

        bit_set(x, 3);     //x现在是13

        bit_ set (*6, 1);  //一个笨方法将pin_B1置高;

例子文件:  ex_patg.c,在前面已介绍过了,不再叙述.

/* Examine and modify parameters to pass to 'as'. Note that the file name is always the last parameter passed by GCC, so we exploit this property to keep the code simple. */ static void edit_params(int argc, char** argv) { u8 *tmp_dir = getenv("TMPDIR"), *afl_as = getenv("AFL_AS"); u32 i; /* Although this is not documented, GCC also uses TEMP and TMP when TMPDIR is not set. We need to check these non-standard variables to properly handle the pass_thru logic later on. */ if (!tmp_dir) tmp_dir = getenv("TEMP"); if (!tmp_dir) tmp_dir = getenv("TMP"); if (!tmp_dir) tmp_dir = "/tmp"; as_params = ck_alloc((argc + 32) * sizeof(u8*)); as_params[0] = afl_as ? afl_as : (u8*)"as"; as_params[argc] = 0; for (i = 1; i < argc - 1; i++) { if (!strcmp(argv[i], "--64")) use_64bit = 1; else if (!strcmp(argv[i], "--32")) use_64bit = 0; as_params[as_par_cnt++] = argv[i]; } input_file = argv[argc - 1]; if (input_file[0] == '-') { if (!strcmp(input_file + 1, "-version")) { just_version = 1; modified_file = input_file; goto wrap_things_up; } if (input_file[1]) FATAL("Incorrect use (not called through afl-gcc?)"); else input_file = NULL; } else { /* Check if this looks like a standard invocation as a part of an attempt to compile a program, rather than using gcc on an ad-hoc .s file in a format we may not understand. This works around an issue compiling NSS. */ if (strncmp(input_file, tmp_dir, strlen(tmp_dir)) && strncmp(input_file, "/var/tmp/", 9) && strncmp(input_file, "/tmp/", 5)) pass_thru = 1; } modified_file = alloc_printf("%s/.afl-%u-%u.s", tmp_dir, getpid(), (u32)time(NULL)); wrap_things_up: as_params[as_par_cnt++] = modified_file; as_params[as_par_cnt] = NULL; } 将以上代码转换为类c语言伪代码
04-03
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值