mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
41 lines
996 B
C++
41 lines
996 B
C++
#include "globals.h"
|
|
#include "flags.h"
|
|
#include "reader.h"
|
|
#include "fluxmap.h"
|
|
#include "decoders/decoders.h"
|
|
#include "sector.h"
|
|
#include "sectorset.h"
|
|
#include "record.h"
|
|
#include "dataspec.h"
|
|
#include "ibm/ibm.h"
|
|
#include "fmt/format.h"
|
|
|
|
static FlagGroup flags { &readerFlags };
|
|
|
|
static IntFlag sectorIdBase(
|
|
{ "--ibm-sector-id-base" },
|
|
"Sector ID of the first sector.",
|
|
1);
|
|
|
|
static BoolFlag ignoreSideByte(
|
|
{ "--ibm-ignore-side-byte" },
|
|
"Ignore the side byte in the sector ID, and use the physical side instead.",
|
|
false);
|
|
|
|
static RangeFlag requiredSectors(
|
|
{ "--ibm-required-sectors" },
|
|
"A comma seperated list or range of sectors which must be on each track.",
|
|
"");
|
|
|
|
int mainReadIBM(int argc, const char* argv[])
|
|
{
|
|
setReaderDefaultSource(":t=0-79:s=0-1");
|
|
setReaderDefaultOutput("ibm.img");
|
|
flags.parseFlags(argc, argv);
|
|
|
|
IbmDecoder decoder(sectorIdBase, ignoreSideByte, requiredSectors);
|
|
readDiskCommand(decoder);
|
|
return 0;
|
|
}
|
|
|