Skip to content

Commit eacb1aa

Browse files
author
yyh
committed
fix a bug in single run
1 parent ebc88e4 commit eacb1aa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ table .submitReg{
6060
position: relative;
6161
z-index: 1;
6262
display: block;
63-
margin-top: -15px;
63+
margin-top: -10px;
6464
width:50px;
6565
height:35px;
6666
font-size: 14px;

order.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ var order={
8282
(RAM.Memory[rs+Iimmi+2]<<16)|(RAM.Memory[rs+Iimmi+3]<<24);
8383
break;
8484
case 43://SW
85-
RAM.Memory[rt+Iimmi+0]=(REGIST.value[rt])&0xFF;
86-
RAM.Memory[rt+Iimmi+1]=(REGIST.value[rt]>>8)&0xFF;
87-
RAM.Memory[rt+Iimmi+2]=(REGIST.value[rt]>>16)&0xFF;
88-
RAM.Memory[rt+Iimmi+3]=(REGIST.value[rt]>>24)&0xFF;
85+
RAM.Memory[rs+Iimmi+0]=(REGIST.value[rt])&0xFF;
86+
RAM.Memory[rs+Iimmi+1]=(REGIST.value[rt]>>8)&0xFF;
87+
RAM.Memory[rs+Iimmi+2]=(REGIST.value[rt]>>16)&0xFF;
88+
RAM.Memory[rs+Iimmi+3]=(REGIST.value[rt]>>24)&0xFF;
8989
break;
9090
case 4://BEQ
9191
if(REGIST.value[rs]==REGIST.value[rt]){

0 commit comments

Comments
 (0)