Skip to content

Commit

Permalink
Merge pull request #12 from 710lucas/change#9/add-system-bus
Browse files Browse the repository at this point in the history
fix indentation
  • Loading branch information
710lucas authored Jul 30, 2024
2 parents fe5a494 + d2c042a commit 672f474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulator/memory/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ byte Memory::read(long position){
}

void Memory::write(long position, byte data){
if (position >= 0 && position < this->memory.size()) {
if (position >= 0 && position < this->memory.size()) {
this->memory[position] = data;
} else {
}
Expand Down

0 comments on commit 672f474

Please sign in to comment.