mirror of https://github.com/stella-emu/stella.git
Fixed comment error: Superchip is only 128 bytes RAM (but 256 bytes
of address space taken).
This commit is contained in:
parent
0e712b39e1
commit
0c7b9aa079
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue