main: update to pass device type and prog type to altera class
This commit is contained in:
parent
84bd19b19a
commit
c99f5aa4e6
|
|
@ -366,7 +366,7 @@ int main(int argc, char **argv)
|
||||||
args.prg_type, args.fpga_part, args.verify, args.verbose);
|
args.prg_type, args.fpga_part, args.verify, args.verbose);
|
||||||
} else if (fab == "altera") {
|
} else if (fab == "altera") {
|
||||||
fpga = new Altera(jtag, args.bit_file, args.file_type,
|
fpga = new Altera(jtag, args.bit_file, args.file_type,
|
||||||
args.verify, args.verbose);
|
args.prg_type, args.fpga_part, args.verify, args.verbose);
|
||||||
} else if (fab == "anlogic") {
|
} else if (fab == "anlogic") {
|
||||||
fpga = new Anlogic(jtag, args.bit_file, args.file_type,
|
fpga = new Anlogic(jtag, args.bit_file, args.file_type,
|
||||||
args.prg_type, args.verify, args.verbose);
|
args.prg_type, args.verify, args.verbose);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue