minor update

This commit is contained in:
Blaise Tine 2021-07-17 15:26:04 -07:00
parent ff5ec3adc8
commit 6b641ceb21
3 changed files with 7 additions and 7 deletions

View file

@ -78,6 +78,8 @@ module VX_alu_unit #(
endcase
end
end
// branch
wire is_jal = is_br_op && (br_op == `BR_JAL || br_op == `BR_JALR);
wire [`NUM_THREADS-1:0][31:0] alu_jal_result = is_jal ? {`NUM_THREADS{alu_req_if.next_PC}} : alu_result;

View file

@ -739,8 +739,9 @@ always @(posedge clk) begin
end
VX_fifo_queue #(
.DATAW (CCI_RD_QUEUE_DATAW),
.SIZE (CCI_RD_QUEUE_SIZE)
.DATAW (CCI_RD_QUEUE_DATAW),
.SIZE (CCI_RD_QUEUE_SIZE),
.BUFFERED (1)
) cci_rd_req_queue (
.clk (clk),
.reset (reset),

View file

@ -79,17 +79,14 @@ run -all
# compress FPGA output files
tar -zcvf output_files_1c.tar.gz `find ./build_fpga_1c -type f \( -iname \*.rpt -o -iname \*.txt -o -iname \*summary -o -iname \*.log \)`
# compress VCD trace
# compress log trace
tar -zcvf run.log.tar.gz run.log
tar -cvjf trace.vcd.tar.bz2 trace.vcd run.log
tar -cvjf trace.vcd.tar.bz2 build_ase_arria10_1c/work/run.log build_ase_arria10_1c/work/trace.vcd
# decompress VCD trace
# decompress log trace
tar -zxvf vortex.vcd.tar.gz
tar -xvf vortex.vcd.tar.bz2
# fixing device resource busy issue when deleting /build_ase_1c/
lsof +D build_ase_1c
# quick off synthesis
make core