【发布时间】:2015-04-07 22:03:58
【问题描述】:
我了解 x86 机器代码可以使用软件中断 (by entering a 32-bit value corresponding to a kernel function into the EAX register of the processor and then executing INT 0x80) 进行 POSIX 系统调用。
我正在考虑为 AVR 架构设计一个类似 Unix 的小型操作系统,以供娱乐和学习。像 x86 的 INT 这样的软件中断如何在 AVR 上工作?
【问题讨论】:
标签: posix interrupt avr system-calls