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: 670745ce0acd
Choose a base ref
...
head repository: azonenberg/openfpga
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6643e0cd24d2
Choose a head ref
  • 2 commits
  • 10 files changed
  • 1 contributor

Commits on Jun 24, 2017

  1. Copy the full SHA
    0f25c99 View commit details
  2. xc2bit: Rename "ff" to "mc"

    In most cases, the code needed to refer to the macrocell as a whole
    (including e.g. the XOR gate) rather than just the flip-flop/register.
    ArcaneNibble committed Jun 24, 2017
    Copy the full SHA
    6643e0c View commit details
Showing with 1,856 additions and 1,857 deletions.
  1. +1 −1 src/xc2bit/src/bin/xc2crbit2jed.rs
  2. +1 −1 src/xc2bit/src/bin/xc2jedblank.rs
  3. +1 −1 src/xc2bit/src/bin/xc2jedroundtrip.rs
  4. +145 −146 src/xc2bit/src/bitstream.rs
  5. +93 −99 src/xc2bit/src/fb.rs
  6. +269 −269 src/xc2bit/src/iob.rs
  7. +2 −2 src/xc2bit/src/lib.rs
  8. +246 −246 src/xc2bit/src/mc.rs
  9. +28 −24 src/xc2bit/src/pla.rs
  10. +1,070 −1,068 src/xc2bit/src/zia.rs
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2crbit2jed.rs
Original file line number Diff line number Diff line change
@@ -48,5 +48,5 @@ fn main() {

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

bitstream.write_jed(&mut ::std::io::stdout()).expect("failed to write jed");
bitstream.to_jed(&mut ::std::io::stdout()).expect("failed to write jed");
}
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2jedblank.rs
Original file line number Diff line number Diff line change
@@ -45,5 +45,5 @@ fn main() {
let (part, spd, pkg) = device_combination.unwrap();
let bitstream = XC2Bitstream::blank_bitstream(part, spd, pkg).expect("failed to create bitstream");

bitstream.write_jed(&mut ::std::io::stdout()).expect("failed to write jed");
bitstream.to_jed(&mut ::std::io::stdout()).expect("failed to write jed");
}
2 changes: 1 addition & 1 deletion src/xc2bit/src/bin/xc2jedroundtrip.rs
Original file line number Diff line number Diff line change
@@ -51,5 +51,5 @@ fn main() {
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");
bitstream.to_jed(&mut ::std::io::stdout()).expect("failed to write jed");
}
Loading