mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Move the fluxtovcd file into the main client.
This commit is contained in:
@@ -15,7 +15,7 @@ install:
|
|||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- make
|
- make
|
||||||
- zip -9 fluxengine.zip fluxengine.exe brother120tool.exe fluxtovcd.exe fluxtoau.exe
|
- zip -9 fluxengine.zip fluxengine.exe brother120tool.exe fluxtoau.exe
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: fluxengine.zip
|
- path: fluxengine.zip
|
||||||
|
|||||||
@@ -179,8 +179,9 @@ buildlibrary libbackend.a \
|
|||||||
lib/zilogmcz/decoder.cc \
|
lib/zilogmcz/decoder.cc \
|
||||||
|
|
||||||
buildlibrary libfrontend.a \
|
buildlibrary libfrontend.a \
|
||||||
src/fe-erase.cc \
|
|
||||||
src/fe-cwftoflux.cc \
|
src/fe-cwftoflux.cc \
|
||||||
|
src/fe-erase.cc \
|
||||||
|
src/fe-fluxtovcd.cc \
|
||||||
src/fe-inspect.cc \
|
src/fe-inspect.cc \
|
||||||
src/fe-readadfs.cc \
|
src/fe-readadfs.cc \
|
||||||
src/fe-readaeslanier.cc \
|
src/fe-readaeslanier.cc \
|
||||||
@@ -221,11 +222,6 @@ buildsimpleprogram brother120tool \
|
|||||||
libemu.a \
|
libemu.a \
|
||||||
libfmt.a \
|
libfmt.a \
|
||||||
|
|
||||||
buildsimpleprogram fluxtovcd \
|
|
||||||
tools/fluxtovcd.cc \
|
|
||||||
libbackend.a \
|
|
||||||
libfmt.a \
|
|
||||||
|
|
||||||
buildsimpleprogram fluxtoau \
|
buildsimpleprogram fluxtoau \
|
||||||
tools/fluxtoau.cc \
|
tools/fluxtoau.cc \
|
||||||
libbackend.a \
|
libbackend.a \
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ static SettableFlag highDensityFlag(
|
|||||||
{ "--high-density", "--hd" },
|
{ "--high-density", "--hd" },
|
||||||
"set the drive to high density mode");
|
"set the drive to high density mode");
|
||||||
|
|
||||||
int main(int argc, const char* argv[])
|
int mainConvertFluxToVcd(int argc, const char* argv[])
|
||||||
{
|
{
|
||||||
flags.parseFlags(argc, argv);
|
flags.parseFlags(argc, argv);
|
||||||
|
|
||||||
@@ -4,6 +4,7 @@ typedef int command_cb(int agrc, const char* argv[]);
|
|||||||
|
|
||||||
extern command_cb mainErase;
|
extern command_cb mainErase;
|
||||||
extern command_cb mainConvertCwfToFlux;
|
extern command_cb mainConvertCwfToFlux;
|
||||||
|
extern command_cb mainConvertFluxToVcd;
|
||||||
extern command_cb mainInspect;
|
extern command_cb mainInspect;
|
||||||
extern command_cb mainReadADFS;
|
extern command_cb mainReadADFS;
|
||||||
extern command_cb mainReadAESLanier;
|
extern command_cb mainReadAESLanier;
|
||||||
@@ -81,6 +82,7 @@ static std::vector<Command> writeables =
|
|||||||
static std::vector<Command> convertables =
|
static std::vector<Command> convertables =
|
||||||
{
|
{
|
||||||
{ "cwftoflux", mainConvertCwfToFlux, "Converts CatWeasel stream files to flux.", },
|
{ "cwftoflux", mainConvertCwfToFlux, "Converts CatWeasel stream files to flux.", },
|
||||||
|
{ "fluxtovcd", mainConvertFluxToVcd, "Converts (one track of a) flux file to a VCD file.", },
|
||||||
};
|
};
|
||||||
|
|
||||||
static void extendedHelp(std::vector<Command>& subcommands, const std::string& command)
|
static void extendedHelp(std::vector<Command>& subcommands, const std::string& command)
|
||||||
|
|||||||
Reference in New Issue
Block a user