mirror of
https://github.com/SikongJueluo/Mini-Nav.git
synced 2026-07-12 20:15:31 +08:00
- Add noise_mask_bernoulli.sv RTL module for probabilistic masking - Add cocotb test suite with reset, threshold, determinism, and distribution checks - Update rtl-sources.mk to include new module - Fix PYTHONPATH in devenv.nix shell hook
12 lines
336 B
Makefile
12 lines
336 B
Makefile
SIM_ROOT := $(abspath ../../..)
|
|
RTL_ROOT := $(abspath $(SIM_ROOT)/../rtl)
|
|
include $(SIM_ROOT)/mk/rtl-sources.mk
|
|
|
|
TOPLEVEL := noise_mask_bernoulli
|
|
COCOTB_TEST_MODULES := tests.modules.noise_mask_bernoulli.test_noise_mask_bernoulli
|
|
VERILOG_SOURCES := $(RTL_BERNOULLI_NOISE_MASK)
|
|
|
|
HASH_BITS ?= 512
|
|
|
|
include $(SIM_ROOT)/mk/cocotb-common.mk
|