Add submodule init to .gitlab-ci.yml

This commit is contained in:
Florian Zaruba 2017-06-05 18:54:59 +02:00
parent b0963f33b8
commit 059b177382
2 changed files with 2 additions and 1 deletions

View file

@ -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:

View file

@ -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