GCC(AVR)汇编:减去标签地址

发布于 2024-11-28 10:03:30 字数 100 浏览 2 评论 0原文

我正在尝试完成:

LABEL:
....
subi r18, LABEL

我需要从寄存器中减去标签的地址。我该怎么做?

I am trying to accomplish:

LABEL:
....
subi r18, LABEL

I need to subtract address of a label from a register. How do I do that?

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

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

发布评论

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

评论(2

天涯离梦残月幽梦 2024-12-05 10:03:30

注意:我对 AVR 汇编器不太熟悉,这只是我通过阅读一些网页可以得出的结论。我还假设您的地址是 16 位的。

; Address you wish to subtract the label from in R16 (low):R17 (high)

SUBI R16, LOW(LABEL)
SBCI R17, HIGH(LABEL) ; Omit this part if you have < 256 Bytes of ram

Note: I'm not that familiar with AVR assembler, this is just what I could gauge from reading a few webpages. I'm also assuming that your addresses are 16-bit.

; Address you wish to subtract the label from in R16 (low):R17 (high)

SUBI R16, LOW(LABEL)
SBCI R17, HIGH(LABEL) ; Omit this part if you have < 256 Bytes of ram
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文