MIPS asm to C:如何设置.section指令

时间:2013-12-12 02:18:27

标签: c assembly mips nios

所以我正在尝试用C语言为NIOS II Audio Core制作一个异常处理程序。

我想知道如何转换......

  

.section .exceptions,“ax”

......从MIPS asm到C?

我知道这个......

  

属性((section(“。exceptions)))

相当于......

  

.section .exceptions

但是如何包含.section指令?

我试过这个......

  

属性((section(“。exceptions,\”ax \“”)))

但是编译器在异常中的s之后不喜欢任何东西。

有什么想法吗?

0 个答案:

没有答案