-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tighten up loc code and place it into sourceq.rs.
- Loading branch information
Showing
16 changed files
with
209 additions
and
264 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
pub mod Top { | ||
incoming clock : Clock; | ||
outgoing led_0 : Word[1]; | ||
outgoing led_1 : Word[1]; | ||
outgoing led_2 : Word[1]; | ||
outgoing led_3 : Word[1]; | ||
outgoing led_4 : Word[1]; | ||
incoming inp : Word[3]; | ||
outgoing out : Word[1]; | ||
|
||
led_0 := 1; | ||
led_1 := 1; | ||
led_2 := 1; | ||
led_3 := 1; | ||
led_4 := 1; | ||
out := inp->get(0); | ||
} |
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
mod tests; | ||
|
||
pub mod common; | ||
pub mod loc; | ||
pub mod ast; | ||
pub mod parse; | ||
pub mod context; | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.