Fixed ASR in C++ generator

This commit is contained in:
Kacper 2020-06-08 21:37:12 +01:00
parent 47f20744ac
commit c2ce212ed5

View file

@ -240,7 +240,7 @@ string getInstructionHex(string instruction){
}else if(opcode=="LSR"){
binary+="100001";
}else if(opcode=="ASR"){
binary+="100011";
binary+="100010";
}else if(opcode=="ROR"){
binary+="100100";
}else if(opcode=="RRC"){