Skip to content

Commit 9183bc2

Browse files
committed
Minor documentation updates
- Renamed behavioral_adder source files - Updated READMEs for Project 4
1 parent b4e2231 commit 9183bc2

File tree

8 files changed

+9
-12
lines changed

8 files changed

+9
-12
lines changed

Project 4 - 64-Bit Adder/behavioral_adder_64/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This model was an abstracted implementation of a full adder written in a behavioral Verilog sense with no specific logic circuit design.
66

7-
This module tested: all possible combinations from 0 to 31 and, separately, two large 32-bit integers.
7+
This module tested: all possible combinations from 0 to 31 and, separately, two large 32-bit integers.
88

99
## Waveforms
1010

@@ -18,5 +18,5 @@ Test 2: Simulation results from the Verilog representation of this Behavioral Ad
1818

1919
## Source Files
2020

21-
- **Behavioral Adder Adder Module** - behavioral_64_full_adder.v
22-
- **Behavioral Adder Test Bench (Test 1)** - behavioral_full_adder_test.v
21+
- **Behavioral Adder Adder Module** - behavioral_full_adder_64.v
22+
- **Behavioral Adder Test Bench** - behavioral_full_adder_test.v

Project 4 - 64-Bit Adder/behavioral_adder_64/behavioral_64_full_adder.v renamed to Project 4 - 64-Bit Adder/behavioral_adder_64/behavioral_full_adder_64.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Design Description: Verilog Module to implement a behavioral 64-bit adder
77
*/
88

9-
module behavioral_64_full_adder
9+
module behavioral_full_adder_64
1010
(
1111
input [63:0] A,
1212
input [63:0] B,

Project 4 - 64-Bit Adder/behavioral_adder_64/behavioral_full_adder_test.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module behavioral_full_adder_test;
2020
integer count2;
2121

2222
// Instantiate the Unit Under Test (UUT)
23-
behavioral_64_full_adder uut
23+
behavioral_full_adder_64 uut
2424
(
2525
.A(A),
2626
.B(B),

Project 4 - 64-Bit Adder/look_ahead_adder_64/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This adder model was implemented using a structural gate-level implementation of
66

77
Each modular circuit is capable of taking 4 bits and summing them into a two bit output.
88

9-
This module tested: all possible combinations from 0 to 31 and, separately, two large 32-bit integers.
9+
This module tested: all possible combinations from 0 to 31 and, separately, two large 32-bit integers.
1010

1111
## Waveforms
1212

@@ -21,4 +21,4 @@ Test 2: Simulation results from the Verilog representation of this 2-Bit Look Ah
2121
## Source Files
2222

2323
- **2-Bit Look Ahead Adder Module** - look_ahead_adder_64.v
24-
- **2-Bit Look Ahead Adder Test Bench (Test 1)** - look_ahead_adder_test.v
24+
- **2-Bit Look Ahead Adder Test Bench** - look_ahead_adder_test.v

Project 4 - 64-Bit Adder/look_ahead_adder_64/look_ahead_adder_test.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
/*
44
Group Members: Nikita Eisenhauer and Warren Seto
5-
65
Lab Name: Adder Design
76
Design Description: Verilog test fixture to test the 64-bit look ahead adder
87
*/

Project 4 - 64-Bit Adder/ripple_adder_64/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This 64-bit adder was designed using a structural gate-level implementation of many full adders linked together into a ripple-carry adder design.
66

7-
This module tested: all possible combinations from 0 to 31 and, separately, two large 32-bit integers.
7+
This module tested: all possible combinations from 0 to 31 and, separately, two large 32-bit integers.
88

99
## Waveforms
1010

@@ -19,4 +19,4 @@ Test 2: Simulation results from the Verilog representation of this Ripple Carry
1919
## Source Files
2020

2121
- **Ripple Carry Adder Module** - ripple_adder_64.v
22-
- **Ripple Carry Adder Test Bench (Test 1)** - ripple_adder_64_test.v
22+
- **Ripple Carry Adder Test Bench** - ripple_adder_64_test.v

Project 4 - 64-Bit Adder/ripple_adder_64/ripple_adder_64.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
/*
44
Group Members: Nikita Eisenhauer and Warren Seto
5-
65
Lab Name: Adder Design
76
Design Description: Verilog Module to implement a 64-bit ripple adder
87
*/

Project 4 - 64-Bit Adder/ripple_adder_64/ripple_adder_64_test.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
/*
44
Group Members: Nikita Eisenhauer and Warren Seto
5-
65
Lab Name: Adder Design
76
Design Description: Verilog test fixture to test the 64-bit ripple adder
87
*/

0 commit comments

Comments
 (0)