Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in code documentation #319

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
6 changes: 3 additions & 3 deletions verilog/dv/la_test1/la_test1.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- Observes counter value through LA probes [31:0]
- Sets counter initial value through LA probes [63:32]
- Flags when counter value exceeds 500 through the management SoC gpio
- Outputs message to the UART when the test concludes successfuly
- Outputs message to the UART when the test concludes successfully
*/

void main()
Expand All @@ -49,8 +49,8 @@ void main()
// all of the GPIO pins to be used for user functions.

// The upper GPIO pins are configured to be output
// and accessble to the management SoC.
// Used to flad the start/end of a test
// and accessible to the management SoC.
// Used to flag the start/end of a test
// The lower GPIO pins are configured to be output
// and accessible to the user project. They show
// the project count value, although this test is
Expand Down
10 changes: 5 additions & 5 deletions verilog/dv/mprj_stimulus/mprj_stimulus.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
void main()
{
// The upper GPIO pins are configured to be output
// and accessble to the management SoC.
// and accessible to the management SoC.
// Used to flag the start/end of a test
// The lower GPIO pins are configured to be output
// and accessible to the user project. They show
Expand Down Expand Up @@ -92,9 +92,9 @@ void main()
// Configure LA probes [31:0], [127:64] as inputs to the cpu
// Configure LA probes [63:32] as outputs from the cpu
reg_la0_oenb = reg_la0_iena = 0x00000000; // [31:0]
reg_la1_oenb = reg_la1_iena = 0xFFFFFFFF; // [63:32]
reg_la2_oenb = reg_la2_iena = 0x00000000; // [95:64]
reg_la3_oenb = reg_la3_iena = 0x00000000; // [127:96]
reg_la1_oenb = reg_la1_iena = 0xFFFFFFFF; // [63:32]
reg_la2_oenb = reg_la2_iena = 0x00000000; // [95:64]
reg_la3_oenb = reg_la3_iena = 0x00000000; // [127:96]

// Flag start of the test
reg_mprj_datal = 0xAB400000;
Expand Down Expand Up @@ -133,4 +133,4 @@ void main()

// Flag end of the test
reg_mprj_datal = 0xAB510000;
}
}