-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for mov encodings to handle fifo get/put Support for mov PINDIR dest Support for wait JMPPIN source
- Loading branch information
Showing
10 changed files
with
615 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
fn main() { | ||
lalrpop::process_root().unwrap(); | ||
#[cfg(not(feature = "rp2350"))] | ||
lalrpop::Configuration::new() | ||
.set_out_dir(std::env::var("OUT_DIR").unwrap()) | ||
.process_file("src/rp2040.lalrpop") | ||
.unwrap(); | ||
#[cfg(feature = "rp2350")] | ||
lalrpop::Configuration::new() | ||
.set_out_dir(std::env::var("OUT_DIR").unwrap()) | ||
.process_file("src/rp2350.lalrpop") | ||
.unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.