mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
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.
14 lines
388 B
Protocol Buffer
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 {}
|
|
|