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

Execute 10 random programs successful on core #12

Closed
3 of 10 tasks
GorgeousWalrus opened this issue Aug 4, 2020 · 4 comments
Closed
3 of 10 tasks

Execute 10 random programs successful on core #12

GorgeousWalrus opened this issue Aug 4, 2020 · 4 comments
Assignees
Labels
in progress Work in progress
Projects

Comments

@GorgeousWalrus
Copy link
Member

GorgeousWalrus commented Aug 4, 2020

Execute 10 random programs successful on core (to find errors)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
@GorgeousWalrus GorgeousWalrus added the in progress Work in progress label Aug 4, 2020
@GorgeousWalrus GorgeousWalrus self-assigned this Aug 4, 2020
@GorgeousWalrus GorgeousWalrus added this to To do in development via automation Aug 4, 2020
@GorgeousWalrus GorgeousWalrus moved this from To do to In progress [Luca] in development Aug 4, 2020
@GorgeousWalrus
Copy link
Member Author

GorgeousWalrus commented Aug 4, 2020

Found issues in MEM stage:

  • Clear lsu_valid when ack comes in from WB stage
  • Separate lsu_valid signals for reading and writing. Otherwise, the valid signal from either can trigger the next instruction of the other type to be valid although it isn't

Found issues in LSU:

  • data_o not stable on load unit
  • wishbone signals not correctly cleared

@GorgeousWalrus
Copy link
Member Author

First program successful

int main() {
    int *addr = (int*)100;
    for(int i = 0; i < 10; i++) {
        (*addr) = i;
        addr+=1;
    }
    while(1);
}

@GorgeousWalrus
Copy link
Member Author

Found issue when executing AUIPC/JAL/JALR: #13

@GorgeousWalrus GorgeousWalrus moved this from In progress [Luca] to Done in development Aug 5, 2020
@GorgeousWalrus
Copy link
Member Author

After 3 extensive programs, I will conclude this issue for now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in progress Work in progress
Projects
development
  
Done
Development

No branches or pull requests

1 participant