minor update

This commit is contained in:
Blaise Tine 2023-07-04 12:40:09 -04:00
parent 7424a12daa
commit ac9dd3bd06
2 changed files with 1 additions and 3 deletions

View file

@ -52,7 +52,7 @@ Vortex is a full-system RISCV-based GPGPU processor.
$ DESTDIR=$TOOLDIR ./ci/toolchain_install.sh --all
$ export VORTEX_HOME=$TOOLDIR/vortex
$ export LLVM_VORTEX=$TOOLDIR/llvm-vortex
$ export LLVM_VORTEX=$TOOLDIR/llvm-pocl
$ export LLVM_POCL=$TOOLDIR/llvm-pocl
$ export RISCV_TOOLCHAIN_PATH=$TOOLDIR/riscv-gnu-toolchain
$ export VERILATOR_ROOT=$TOOLDIR/verilator
$ export PATH=$VERILATOR_ROOT/bin:$PATH

View file

@ -18,8 +18,6 @@ module VX_ipdom_stack #(
output wire empty,
output wire full
);
`STATIC_ASSERT(`ISPOW2(DEPTH), ("depth must be a power of 2!"))
reg slot_idx [DEPTH-1:0];
reg [ADDRW-1:0] rd_ptr, wr_ptr;