[ Spectaculator, ZX Spectrum Emulator ] Home | Downloads | Support [ ZX Spectrum Image ]

Table of contents

The zx-state file format
Block types

ZXSTIF2ROM

An Interface II ROM cartridge.

// Loaded Interface II ROM cart
typedef struct _tagZXSTIF2ROM
{
  ZXSTBLOCK blk;
  DWORD dwCartSize;
  BYTE chData[1];
} ZXSTIF2ROM, *LPZXSTIF2ROM;

Members

blk
The block header. The block id is ZXSTBID_IF2ROM ('I', 'F', '2', 'R').
dwCartSize
The size of the compressed ROM cartridge image at chData. The uncompressed size is always 16 KB.
chData
The Zlib compressed ROM cartridge image.

Remarks

This block will not be present in a file if the Spectrum did not have an Interface II ROM cartridge loaded.

Revision history

Available since version 1.0


  Copyright © 2001 - 2011 Jonathan Needle Top