PIC(可编程中断控制器)和VIM(矢量中断控制器)有什么区别?
ARM处理器相关文档谈到了VIC,我相信PIC来自Intel阵营。它们在概念上相同吗?
ARM processor related documentation talks about VIC and I believe PIC comes from the Intel camp. Are they conceptually the same ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它们在概念上是相同的。每个微处理器和微控制器的实现方式都不同,因此这些术语一般来说不是很有用。 “可编程”可能意味着也可能不意味着您可以为各个中断设置向量,或者您可能无法更改中断优先级。 VIC 只是意味着您可以为各个中断使用单独的硬件向量,而不必在单个软件中断处理程序中(即在 IRQ 处理程序中)进行解码。
Yes they are conceptually the same. Every microprocessor and microcontroller is implemented differently, so the terms are not very useful in general. "Programmable" may or may not imply that you can set vectors for individual interrupts, or you may or may not be able to change interrupt priorities. VIC simply implies that you can have individual hardware vectors for individual interrupts, instead of having to do the decoding in a single software interrupt handler (ie in the IRQ handler).