C++嵌入式系统中需要汇编

发布于 2024-08-20 16:30:37 字数 54 浏览 7 评论 0原文

我听说在用 C 语言对嵌入式系统进行编程时需要调用汇编函数/调用。这在 C++ 中是否有必要?

I hear of a need to call assembly functions/calls when programming embedded systems in C. Is this necessary in C++ or not?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

当爱已成负担 2024-08-27 16:30:37

C++ 不提供比 C 更底层的构造。因此,如果您需要在 C 中摆弄控制寄存器和 ISR,则需要在 C++ 中完成。

C++ does not provide any more low-level constructs than C does. Hence, if you need to fiddle around with control registers and ISRs in C, you will need to do it in C++.

沧桑㈠ 2024-08-27 16:30:37

调用汇编函数或使用汇编调用包括:

  • 使用适当的编译器标记将内联汇编封装在 C/C++ 函数中,或者
  • 与可执行文件链接的另一个对象,该对象是在汇编中编写的,其行为类似于 C 函数的实现你的系统。

所以,如果你需要在C中使用汇编,你就需要在C++中使用汇编。这不仅适用于嵌入式编程。以在intel x86芯片上执行指令cpuid为例。

Calling assembly functions or using assembly calls consists of:

  • Either- inline assembly wrapped in a C/C++ function using the appropriate compiler tag or
  • Another object linked with your executable which was written in assembly that behaves like a C function with respect to the implementation on your system.

So, if you need to use assembly in C, you need to use assembly in C++. That is true not just of embedded programming, too. Take executing the instruction cpuid on intel x86 chips as an example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文