Files
fluxengine/arch/micropolis/micropolis.proto
Howard M. Harte d69944dd8c Micropolis: Add support for MZOS checksum.
Vector MZOS uses a different sector checksum than the standard
Micropolis checksum used by MDOS, CP/M and OASIS.  Automatically
detect the checksum on the disk by default, but allow the user
to force the use of a specific checksum using the
--decoder.micropolis.checksum_type parameter.
2022-02-19 14:10:56 -08:00

14 lines
388 B
Protocol Buffer

syntax = "proto2";
import "lib/common.proto";
message MicropolisDecoderProto {
optional int32 sector_output_size = 1 [default = 256,
(help) = "How much of the raw sector should be saved. Must be 256 or 275"];
optional int32 checksum_type = 2 [default = 0,
(help) = "Checksum type to use: 0 = automatically detect, 1 = Micropolis, 2 = MZOS"];
}
message MicropolisEncoderProto {}