ByteArrayOutputStream cdb = new ByteArrayOutputStream(this.size());
DataOutputStream out = new DataOutputStream(cdb);
try
{
out.writeByte(OPERATION_CODE);
out.writeByte(this.DBD ? 0x08 : 0x00);
out.writeByte((this.PC << 6) | this.pageCode);
out.writeByte(this.subPageCode);
out.writeByte((int) getAllocationLength());
out.writeByte(super.getControl());