mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 21:57:11 -04:00
Add submodule init to .gitlab-ci.yml
This commit is contained in:
parent
b0963f33b8
commit
059b177382
2 changed files with 2 additions and 1 deletions
|
@ -71,6 +71,7 @@ test_store_queue:
|
|||
test_core:
|
||||
stage: test
|
||||
before_script:
|
||||
- git submodule update --init --recursive
|
||||
- make build-tests
|
||||
- make build library=core_lib
|
||||
script:
|
||||
|
|
|
@ -375,7 +375,7 @@ module csr_regfile #(
|
|||
// throw an illegal instruction exception
|
||||
if (update_access_exception || read_access_exception) begin
|
||||
csr_exception_o = {
|
||||
pc_i, ILLEGAL_INSTR, 1'b1
|
||||
ILLEGAL_INSTR, pc_i, 1'b1 // TODO: Instead of PC the instruction bits should be here
|
||||
};
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue