Fixed comment error: Superchip is only 128 bytes RAM (but 256 bytes

of address space taken).
This commit is contained in:
Stephen Anthony 2017-03-16 20:59:52 -02:30
parent 0e712b39e1
commit 0c7b9aa079
1 changed files with 2 additions and 2 deletions

View File

@ -258,13 +258,13 @@ class Cartridge : public Device
uInt32 minhits);
/**
Returns true if the image is probably a SuperChip (256 bytes RAM)
Returns true if the image is probably a SuperChip (128 bytes RAM)
Note: should be called only on ROMs with size multiple of 4K
*/
static bool isProbablySC(const uInt8* image, uInt32 size);
/**
Returns true if the image is probably a 4K SuperChip (256 bytes RAM)
Returns true if the image is probably a 4K SuperChip (128 bytes RAM)
*/
static bool isProbably4KSC(const uInt8* image, uInt32 size);