Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions introductions/johnrivera.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from introductions import johnrivera
def main():
# other intros
johnrivera.intro()
14 changes: 14 additions & 0 deletions introductions/m81.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
`timescale 1ns/1ps

module m81(input D0, D1, D2, D3, D4, D5, D6, D7, S0, S1, S2, output out);
wire T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11;
not(T1, S0); // ~A
not(T2, S1); // ~B
not(T3, S2); // ~C

and(T4, D0, T1, T2, T3), (T5, D1, S0, T2, T3);
and(T6, D2, T1, S1, T3), (T7, D3, S0, S1, T3);
and(T8, D4, T1, T2, S2), (T9, D5, S0, T2, S2);
and(T10, D6, T1, S1, S2), (T11, D7, S0, S1, S2);
or(out, T4, T5, T6, T7, T8, T9, T10, T11);
endmodule
2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from introductions import mokshithanelluri
from introductions import matthewschaming
from introductions import sophiaabbassi
from introductions import johnrivera
# Put all imports above this line

def main():
Expand All @@ -22,6 +23,7 @@ def main():
mokshithanelluri.intro()
matthewschaming.intro()
sophiaabbassi.intro()
johnrivera.intro()
# Call you intro function above this line


Expand Down
Loading