Com sys lab/control unit that works with registers
รุ่นแก้ไขเมื่อ 18:06, 3 กรกฎาคม 2559 โดย Jittat (คุย | มีส่วนร่วม)
- มาจาก com sys lab
ใช้เทมเพลตใหม่ ในแบบฝึกหัดนี้ control unit จะเชื่อมโยงกับส่วนอื่น ๆ ซับซ้อนขึ้น อ่าน instruction set ของ CPU ได้ที่นี่
Load to $0, Store from $0
เพื่อทดสอบการออกแบบ control unit ในส่วนนี้เราจะใช้โค้ดในการเตรียมค่า register และคำสั่งใน instruction memory ดังด้านล่าง
// set register $1 = 1
reg.set(1,1);
// set instruction memory
rom.set(0,0x01); // ADD $1 $0 = 1
rom.set(1,0x8b); // STA $3 $3 = 1
rom.set(2,0x09); // SUB $1 $0 = 0
rom.set(3,0x03); // ADD $3 $0 = 1
rom.set(4,0x03); // ADD $3 $0 = 2
rom.set(5,0x8c); // STA $4 $4 = 2
rom.set(6,0x04); // ADD $4 $0 = 4
rom.set(7,0x09); // SUB $1 $0 = 3
rom.set(8,0x8d); // STA $5 $5 = 3
rom.set(9,0x84); // LDA $4 $0 = 2
rom.set(10,0x0d); // SUB $5 $0 = -1 = 0x0f
rom.set(11,0x8c); // STA $4 $4 = 0xf