首页 | 嵌入式系统 | 显示技术 | 模拟IC/电源 | 元件与制造 | 其他IC/制程 | 消费类电子 | 无线/通信 | 汽车电子 | 工业控制 | 医疗电子 | 测试测量
首页> 分享下载> 常用文档> CPU Design -Logical Parts and Instruction

CPU Design -Logical Parts and Instruction

资料介绍
CPU Design -Logical Parts and Instruction
Procedure of Software Development swap(int v[], int k){
int temp;
temp = v[k];
High-level language program v[k] = v[k+1];
v[k+1] = temp;
}
Compiler swap:
muli $2, $5, 4
add $2, $4, $2
Assembly language program lw $15, 0($2)
lw $16, 4($2)
sw $16, 0($2)
Assembler sw $15, 4($2)
jr $
标签: CPUDesignBIUEUFullAdderCLAMultiplicationDEC80x86MIPS
CPU Design -Logical Parts and Instruction
本地下载

评论