摘要: 示例C代码 // 参数远超寄存器数量 typedef struct { int Rn[100]; int pc; } reg; int framePoint(reg cpu) { return cpu.Rn[0] * cpu.pc; } int main() { reg cpu; cpu.Rn[0] 阅读全文
posted @ 2022-07-24 11:03 壹点灵异 阅读(398) 评论(0) 推荐(0) 编辑