Add Write and WriteShort to ROM class

This commit is contained in:
scawful
2023-01-10 13:46:18 -06:00
parent 539a2d24c6
commit 3c0e1b9323
2 changed files with 10 additions and 0 deletions

View File

@@ -96,6 +96,9 @@ class ROM {
gfx::SNESColor ReadColor(int offset);
gfx::SNESPalette ReadPalette(int offset, int num_colors);
void Write(int addr, int value);
void WriteShort(int addr, int value);
void RenderBitmap(gfx::Bitmap* bitmap) const;
absl::Status ApplyAssembly(const absl::string_view& filename,