Skip to content

Commit

Permalink
update PSEMU/RAM.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherrytree56567 committed Oct 18, 2023
1 parent cd64985 commit 26d0160
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions PSEMU/RAM.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class RAM {
void newl();
uint32_t load32(uint32_t offset);
void store32(uint32_t offset, uint32_t value);
void store16(uint32_t offset, uint16_t value);
void store8(uint32_t offset, uint8_t value) {
ram[offset] = value;
}
Expand Down

0 comments on commit 26d0160

Please sign in to comment.