1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Enhances the amount of ROM information posted by the Apple machines.

This commit is contained in:
Thomas Harte
2019-07-20 16:08:40 -04:00
parent 20670bab2f
commit 3c68a5ca65
3 changed files with 20 additions and 19 deletions
+2 -2
View File
@@ -38,8 +38,8 @@ struct ROM {
ROM(std::string descriptive_name, std::string file_name, size_t size, uint32_t crc32) :
descriptive_name(descriptive_name), file_name(file_name), size(size), crc32s({crc32}) {}
ROM(std::string descriptive_name, std::string file_name, size_t size, std::vector<uint32_t> &crc32s) :
descriptive_name(descriptive_name), file_name(file_name), size(size), crc32s(std::move(crc32s)) {}
ROM(std::string descriptive_name, std::string file_name, size_t size, std::initializer_list<uint32_t> crc32s) :
descriptive_name(descriptive_name), file_name(file_name), size(size), crc32s(crc32s) {}
};
/*!