rename migen to fpga

master
occheung 2020-09-25 14:26:28 +08:00
parent dff726d121
commit b0b717fbaf
2 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@ use std::process::Command;
fn main() {
Command::new("python3")
.arg("migen/fpga_config.py")
.arg("fpga/fpga_config.py")
.spawn()
.expect("FPGA bitstream file cannot be built!");
println!("cargo:rerun-if-changed=migen/fpga_config.py")
println!("cargo:rerun-if-changed=fpga/fpga_config.py")
}