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.
有人知道在 C18 编译器上声明裸函数的方法吗?
裸函数是指没有任何结语和序言的函数。
在 gcc 中我使用:
__attribute__((naked)) int func(int par1)
也许是一个#pragma 或一些技巧来获得相同的结果......??
谢谢!