├── README.md ├── run ├── Makefile ├── incisive.mk ├── modelsim.cmd ├── modelsim.mk ├── questa.mk └── vcs.mk └── src ├── no_source_code.sv ├── tutorial_15.sv ├── tutorial_1_to_6.sv ├── tutorial_21.sv ├── tutorial_23 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── license.sv ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_24 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── ral.svh ├── sequences.svh ├── testbench.sv ├── tests.svh └── transactions.svh ├── tutorial_25 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── model.cc ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_26 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── license.sv ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_27 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── license.sv ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_28 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── license.sv ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_29 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── ral.svh ├── sequences.svh ├── testbench.sv ├── tests.svh └── transactions.svh ├── tutorial_32 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── license.sv ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_33 ├── agent.svh ├── design.sv ├── env.svh ├── jelly_bean_if.sv ├── jelly_bean_pkg.sv ├── license.sv ├── sequences.svh ├── test.svh ├── testbench.sv └── transactions.svh ├── tutorial_7_and_8.sv └── tutorial_9.sv /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/README.md -------------------------------------------------------------------------------- /run/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/run/Makefile -------------------------------------------------------------------------------- /run/incisive.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/run/incisive.mk -------------------------------------------------------------------------------- /run/modelsim.cmd: -------------------------------------------------------------------------------- 1 | run 1sec 2 | -------------------------------------------------------------------------------- /run/modelsim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/run/modelsim.mk -------------------------------------------------------------------------------- /run/questa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/run/questa.mk -------------------------------------------------------------------------------- /run/vcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/run/vcs.mk -------------------------------------------------------------------------------- /src/no_source_code.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/no_source_code.sv -------------------------------------------------------------------------------- /src/tutorial_15.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_15.sv -------------------------------------------------------------------------------- /src/tutorial_1_to_6.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_1_to_6.sv -------------------------------------------------------------------------------- /src/tutorial_21.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_21.sv -------------------------------------------------------------------------------- /src/tutorial_23/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/agent.svh -------------------------------------------------------------------------------- /src/tutorial_23/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/design.sv -------------------------------------------------------------------------------- /src/tutorial_23/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/env.svh -------------------------------------------------------------------------------- /src/tutorial_23/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_23/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_23/license.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/license.sv -------------------------------------------------------------------------------- /src/tutorial_23/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_23/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/test.svh -------------------------------------------------------------------------------- /src/tutorial_23/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_23/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_23/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_24/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/agent.svh -------------------------------------------------------------------------------- /src/tutorial_24/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/design.sv -------------------------------------------------------------------------------- /src/tutorial_24/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/env.svh -------------------------------------------------------------------------------- /src/tutorial_24/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_24/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_24/ral.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/ral.svh -------------------------------------------------------------------------------- /src/tutorial_24/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_24/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_24/tests.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/tests.svh -------------------------------------------------------------------------------- /src/tutorial_24/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_24/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_25/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/agent.svh -------------------------------------------------------------------------------- /src/tutorial_25/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/design.sv -------------------------------------------------------------------------------- /src/tutorial_25/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/env.svh -------------------------------------------------------------------------------- /src/tutorial_25/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_25/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_25/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/model.cc -------------------------------------------------------------------------------- /src/tutorial_25/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_25/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/test.svh -------------------------------------------------------------------------------- /src/tutorial_25/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_25/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_25/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_26/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/agent.svh -------------------------------------------------------------------------------- /src/tutorial_26/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/design.sv -------------------------------------------------------------------------------- /src/tutorial_26/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/env.svh -------------------------------------------------------------------------------- /src/tutorial_26/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_26/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_26/license.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/license.sv -------------------------------------------------------------------------------- /src/tutorial_26/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_26/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/test.svh -------------------------------------------------------------------------------- /src/tutorial_26/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_26/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_26/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_27/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/agent.svh -------------------------------------------------------------------------------- /src/tutorial_27/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/design.sv -------------------------------------------------------------------------------- /src/tutorial_27/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/env.svh -------------------------------------------------------------------------------- /src/tutorial_27/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_27/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_27/license.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/license.sv -------------------------------------------------------------------------------- /src/tutorial_27/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_27/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/test.svh -------------------------------------------------------------------------------- /src/tutorial_27/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_27/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_27/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_28/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/agent.svh -------------------------------------------------------------------------------- /src/tutorial_28/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/design.sv -------------------------------------------------------------------------------- /src/tutorial_28/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/env.svh -------------------------------------------------------------------------------- /src/tutorial_28/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_28/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_28/license.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/license.sv -------------------------------------------------------------------------------- /src/tutorial_28/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_28/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/test.svh -------------------------------------------------------------------------------- /src/tutorial_28/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_28/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_28/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_29/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/agent.svh -------------------------------------------------------------------------------- /src/tutorial_29/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/design.sv -------------------------------------------------------------------------------- /src/tutorial_29/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/env.svh -------------------------------------------------------------------------------- /src/tutorial_29/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_29/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_29/ral.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/ral.svh -------------------------------------------------------------------------------- /src/tutorial_29/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_29/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_29/tests.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/tests.svh -------------------------------------------------------------------------------- /src/tutorial_29/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_29/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_32/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/agent.svh -------------------------------------------------------------------------------- /src/tutorial_32/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/design.sv -------------------------------------------------------------------------------- /src/tutorial_32/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/env.svh -------------------------------------------------------------------------------- /src/tutorial_32/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_32/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_32/license.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/license.sv -------------------------------------------------------------------------------- /src/tutorial_32/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_32/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/test.svh -------------------------------------------------------------------------------- /src/tutorial_32/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_32/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_32/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_33/agent.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/agent.svh -------------------------------------------------------------------------------- /src/tutorial_33/design.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/design.sv -------------------------------------------------------------------------------- /src/tutorial_33/env.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/env.svh -------------------------------------------------------------------------------- /src/tutorial_33/jelly_bean_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/jelly_bean_if.sv -------------------------------------------------------------------------------- /src/tutorial_33/jelly_bean_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/jelly_bean_pkg.sv -------------------------------------------------------------------------------- /src/tutorial_33/license.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/license.sv -------------------------------------------------------------------------------- /src/tutorial_33/sequences.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/sequences.svh -------------------------------------------------------------------------------- /src/tutorial_33/test.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/test.svh -------------------------------------------------------------------------------- /src/tutorial_33/testbench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/testbench.sv -------------------------------------------------------------------------------- /src/tutorial_33/transactions.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_33/transactions.svh -------------------------------------------------------------------------------- /src/tutorial_7_and_8.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_7_and_8.sv -------------------------------------------------------------------------------- /src/tutorial_9.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cluelogic/uvm-tutorial-for-candy-lovers/HEAD/src/tutorial_9.sv --------------------------------------------------------------------------------