Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图理解 keil 启动汇编代码,因为它初始化最小硬件以使用 C 语言。我被困在这条线上:
IF PLL_SETUP <> 0
上面那一行是什么意思?具体来说,<>符号?请有人帮我弄清楚这个组装说明。
<>
该行本身不是汇编,而是控制指令。<> 表示“不等于”。因此,如果预处理器符号 PLL_SETUP 不为 0,则将以下块(直到 ELSE 或 ENDIF)传递给汇编器,否则将被跳过。