所以我正在尝试用C语言为NIOS II Audio Core制作一个异常处理程序。
我想知道如何转换......
.section .exceptions,“ax”
......从MIPS asm到C?
我知道这个......
属性((section(“。exceptions)))
相当于......
.section .exceptions
但是如何包含.section指令?
我试过这个......
属性((section(“。exceptions,\”ax \“”)))
但是编译器在异常中的s之后不喜欢任何东西。
有什么想法吗?