Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: azonenberg/openfpga
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 170a3ec09d8b
Choose a base ref
...
head repository: azonenberg/openfpga
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0d0d159af288
Choose a head ref
  • 2 commits
  • 11 files changed
  • 1 contributor

Commits on Jun 23, 2017

  1. Copy the full SHA
    74663d1 View commit details
  2. Copy the full SHA
    0d0d159 View commit details
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2crbit2jed.rs
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ fn main() {

let fuse_array = FuseArray::from_file_contents(&data).expect("failed to read crbit");

let bitstream = process_crbit(&fuse_array).expect("failed to process crbit");
let bitstream = XC2Bitstream::from_crbit(&fuse_array).expect("failed to process crbit");

bitstream.write_jed(&mut ::std::io::stdout()).expect("failed to write jed");
}
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2jed2crbit.rs
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ fn main() {
let (bits, device_name_option) = bits_result.expect("failed to read jed");
let device_name = device_name_option.expect("missing device name in jed");

let bitstream_result = process_jed(&bits, &device_name);
let bitstream_result = XC2Bitstream::from_jed(&bits, &device_name);
let bitstream = bitstream_result.expect("failed to process jed");

let fuse_array = bitstream.to_crbit();
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2jeddump.rs
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ fn main() {
let (bits, device_name_option) = bits_result.expect("failed to read jed");
let device_name = device_name_option.expect("missing device name in jed");

let bitstream_result = process_jed(&bits, &device_name);
let bitstream_result = XC2Bitstream::from_jed(&bits, &device_name);
let bitstream = bitstream_result.expect("failed to process jed");

bitstream.dump_human_readable(&mut ::std::io::stdout()).expect("failed to print jed");
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2jedroundtrip.rs
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ fn main() {
let (bits, device_name_option) = bits_result.expect("failed to read jed");
let device_name = device_name_option.expect("missing device name in jed");

let bitstream_result = process_jed(&bits, &device_name);
let bitstream_result = XC2Bitstream::from_jed(&bits, &device_name);
let bitstream = bitstream_result.expect("failed to process jed");

bitstream.write_jed(&mut ::std::io::stdout()).expect("failed to write jed");
Loading