added snes_spc library

This commit is contained in:
scawful
2023-01-01 16:11:44 -06:00
parent c1526cacdf
commit 2d3937e791
8 changed files with 114 additions and 5 deletions

View File

@@ -479,6 +479,7 @@ absl::StatusOr<Bytes> ROM::Compress(const int start, const int length, int mode,
absl::StatusOr<Bytes> ROM::CompressGraphics(const int pos, const int length) {
return Compress(pos, length, kNintendoMode2);
}
absl::StatusOr<Bytes> ROM::CompressOverworld(const int pos, const int length) {
return Compress(pos, length, kNintendoMode1);
}