14.5 模板声明 Read More
14.4 类型等价 Read More
14.1 模板形参 Read More
在很多时候我们会有这么一个需求——
#define DUP_CALL(func, param, nTimes)
比如我调用:
DUP_CALL(puts, "Hello, world!", 3);
编译器将会自动生成——
puts("Hello, world!");
puts("Hello, world!");
puts("Hello, world!"); Read More
模板概述 Read More
这章描述了窥探控制单元(SCU)。它包含以下段落:
1、关于SCU
2、SCU寄存器
3、AMBA[译者注:高级微控制器总线接口(Advanced Microcontroller Bus Interface)]AXI[译者注:高级可扩展接口(Advanced eXtensible Interface)]主机端接口
4、AXI主机接口时序
5、加速器一致性端口
6、使用WFE/SEV与一个外部代理的事件通信 Read More