Skip to content

Commit

Permalink
Merge pull request #4 from mattvenn/patch-4
Browse files Browse the repository at this point in the history
Update la.c
  • Loading branch information
M0stafaRady authored Jun 4, 2024
2 parents 50efdc9 + 47bb217 commit f65e4c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions verilog/dv/cocotb/all_tests/logicAnalyzer/la.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ void main(){
enableHkSpi(0);

// Configure LA probes [63:32] and [127:96] as inputs to the cpu
// Configure LA probes [31:0] and [63:32] as outputs from the cpu
// 0 as input
// Configure LA probes [31:0] and [63:32] as outputs from the cpu
// 0 as output
LogicAnalyzer_inputEnable(0,0xFFFFFFFF);
LogicAnalyzer_outputEnable(0,0x0);
// 1 as output
// 1 as input
LogicAnalyzer_inputEnable(1,0x0);
LogicAnalyzer_outputEnable(1,0xFFFFFFFF);
// 2 as input
// 2 as output
LogicAnalyzer_inputEnable(2,0xFFFFFFFF);
LogicAnalyzer_outputEnable(2,0x0);
// 3 as output
// 3 as input
LogicAnalyzer_inputEnable(3,0x0);
LogicAnalyzer_outputEnable(3,0xFFFFFFFF);
// set LA 0,2
Expand Down

0 comments on commit f65e4c5

Please sign in to comment.