Skip to content

Commit

Permalink
update PSEMU/CPU.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherrytree56567 committed Oct 6, 2023
1 parent a77bb03 commit d9a04b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PSEMU/CPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ void CPU::op_srav(uint32_t instruction) {
registers.reg[rd] = (uint)((int)registers.reg[rt] >> (int)(registers.reg[rs] & 0x1F));
}



void CPU::loadBIOS(const char* filename) {
FILE* file = fopen(filename, "rb");
if (!file) {
Expand Down

0 comments on commit d9a04b7

Please sign in to comment.