├── ARM9 └── uart_top.v ├── DDCA ├── MIPS │ ├── mips.sv │ └── mips.vhd └── Mont_VHDL.vhd ├── EE287 └── FIFO │ ├── fifo_Mar10v3_worked.v │ ├── fifo_Mar6v2_unworked.v │ ├── ftb.v │ ├── mem1k.v │ ├── runfifo.pl │ └── topfifo.v ├── Labs ├── Lab01 │ ├── circ.v │ ├── hwres2.txt │ ├── run2.pl │ └── synres.txt └── Lab02_03 │ ├── fpmul111.v │ ├── fpmul200.v │ ├── hwres2.txt │ ├── run2.pl │ └── synres.txt ├── README.md ├── ciletti └── Advanced Digital Design with the Verilog HDL源码 │ ├── Chapter 10 │ ├── ADDVB_Models_10.doc │ ├── Dividers │ │ ├── Divider_RR_STG.v │ │ ├── Divider_STG_0.v │ │ ├── Divider_STG_0_sub.v │ │ ├── Divider_STG_1.v │ │ ├── _vti_cnf │ │ │ ├── Divider_RR_STG.v │ │ │ ├── Divider_STG_0.v │ │ │ ├── Divider_STG_0_sub.v │ │ │ ├── Divider_STG_1.v │ │ │ └── t_Divider_RR_STG.v │ │ └── t_Divider_RR_STG.v │ ├── Multipliers │ │ ├── Multiplier_ASM_0.v │ │ ├── Multiplier_ASM_1.v │ │ ├── Multiplier_Booth_STG_0.v │ │ ├── Multiplier_Implicit_1.v │ │ ├── Multiplier_Implicit_2.v │ │ ├── Multiplier_RR_ASM.v │ │ ├── Multiplier_STG_0.v │ │ ├── Multiplier_STG_1.v │ │ ├── Radix_4__STG_0.v │ │ └── _vti_cnf │ │ │ ├── Multiplier_ASM_0.v │ │ │ ├── Multiplier_ASM_1.v │ │ │ ├── Multiplier_Booth_STG_0.v │ │ │ ├── Multiplier_Implicit_1.v │ │ │ ├── Multiplier_Implicit_2.v │ │ │ ├── Multiplier_RR_ASM.v │ │ │ ├── Multiplier_STG_0.v │ │ │ ├── Multiplier_STG_1.v │ │ │ └── Radix_4__STG_0.v │ └── _vti_cnf │ │ └── ADDVB_Models_10.doc │ ├── Chapter 11 │ ├── ADDVB_Models_11.doc │ ├── BIST │ │ ├── ASIC_with_BIST.v │ │ ├── _vti_cnf │ │ │ ├── ASIC_with_BIST.v │ │ │ └── t_ASIC_with_BIST.v │ │ └── t_ASIC_with_BIST.v │ ├── JTAG │ │ ├── ASIC_with_TAP.v │ │ ├── BR_Cell.v │ │ ├── BSC_Cell.v │ │ ├── Boundary_Scan_Register.v │ │ ├── IR_Cell.v │ │ ├── Instruction_Decoder.v │ │ ├── Instruction_Register.v │ │ ├── TAP_FSM.v │ │ ├── TDI_Generator.v │ │ ├── TDO_Monitor.v │ │ ├── _vti_cnf │ │ │ ├── ASIC_with_TAP.v │ │ │ ├── BR_Cell.v │ │ │ ├── BSC_Cell.v │ │ │ ├── Boundary_Scan_Register.v │ │ │ ├── IR_Cell.v │ │ │ ├── Instruction_Decoder.v │ │ │ ├── Instruction_Register.v │ │ │ ├── TAP_FSM.v │ │ │ ├── TDI_Generator.v │ │ │ ├── TDO_Monitor.v │ │ │ ├── t_ASIC_with_TAP.v │ │ │ ├── t_Boundary_Scan_Register.v │ │ │ ├── t_Instruction_Register.v │ │ │ └── tap_controller.v │ │ ├── t_ASIC_with_TAP.v │ │ ├── t_Boundary_Scan_Register.v │ │ ├── t_Instruction_Register.v │ │ └── tap_controller.v │ ├── Latch_Races.v │ └── _vti_cnf │ │ ├── ADDVB_Models_11.doc │ │ └── Latch_Races.v │ ├── Chapter 4 │ ├── ADDVB_Models_4.doc │ ├── AOI_UDP.v │ ├── AOI_str.v │ ├── Add_rca_4.v │ ├── Mux_2_32_CA.v │ ├── Mux_4_32_CA.v │ ├── Mux_4_32_CA_if.v │ ├── Mux_4_32_case.v │ ├── _vti_cnf │ │ ├── ADDVB_Models_4.doc │ │ ├── AOI_UDP.v │ │ ├── AOI_str.v │ │ ├── Add_rca_4.v │ │ ├── Mux_2_32_CA.v │ │ ├── Mux_4_32_CA.v │ │ ├── Mux_4_32_CA_if.v │ │ ├── Mux_4_32_case.v │ │ ├── compare_2_str.v │ │ ├── compare_4_str.v │ │ ├── t_Add_full_ASIC.v │ │ ├── t_Add_full_unit_delay.v │ │ ├── t_Add_half.v │ │ ├── t_Add_rca_4_Unit_Delay.v │ │ └── test_hiZ.v │ ├── compare_2_str.v │ ├── compare_4_str.v │ ├── t_Add_full_ASIC.v │ ├── t_Add_full_unit_delay.v │ ├── t_Add_half.v │ ├── t_Add_rca_4_Unit_Delay.v │ └── test_hiZ.v │ ├── Chapter 5 │ ├── ADDVB_Models_5.doc │ ├── AOI_5_CA0.v │ ├── AOI_5_CA1.v │ ├── AOI_5_CA2.v │ ├── AOI_5_CA3.v │ ├── Auto_LFSR_ALGO.v │ ├── Auto_LFSR_Param.v │ ├── Auto_LFSR_RTL.v │ ├── Hex_Keypad_Grayhill_072.v │ ├── Latch_CA.v │ ├── Latch_Rbar_CA.v │ ├── Majority.v │ ├── Majority_4b.v │ ├── Mux_4_32_CA.v │ ├── Mux_4_32_case.v │ ├── Mux_4_32_if.v │ ├── Par_load_reg4.v │ ├── Register_File.v │ ├── Row_Signal.v │ ├── Seven_Seg_Display.v │ ├── Shift_reg4.v │ ├── Synchronizer.v │ ├── Universal_Shift_Reg.v │ ├── Universal_Shift_Register.v │ ├── Up_Down_Implicit1.v │ ├── _vti_cnf │ │ ├── ADDVB_Models_5.doc │ │ ├── AOI_5_CA0.v │ │ ├── AOI_5_CA1.v │ │ ├── AOI_5_CA2.v │ │ ├── AOI_5_CA3.v │ │ ├── Auto_LFSR_ALGO.v │ │ ├── Auto_LFSR_Param.v │ │ ├── Auto_LFSR_RTL.v │ │ ├── Hex_Keypad_Grayhill_072.v │ │ ├── Latch_CA.v │ │ ├── Latch_Rbar_CA.v │ │ ├── Majority.v │ │ ├── Majority_4b.v │ │ ├── Mux_4_32_CA.v │ │ ├── Mux_4_32_case.v │ │ ├── Mux_4_32_if.v │ │ ├── Par_load_reg4.v │ │ ├── Register_File.v │ │ ├── Row_Signal.v │ │ ├── Seven_Seg_Display.v │ │ ├── Shift_reg4.v │ │ ├── Synchronizer.v │ │ ├── Universal_Shift_Reg.v │ │ ├── Universal_Shift_Register.v │ │ ├── Up_Down_Implicit1.v │ │ ├── add_4cycle.v │ │ ├── adder_task.v │ │ ├── arithmetic_unit.v │ │ ├── asynch_df_behav.v │ │ ├── barrel_shifter.v │ │ ├── comparator.v │ │ ├── compare_2_CA0.v │ │ ├── compare_2_CA1.txt │ │ ├── compare_2_CA1.v │ │ ├── compare_2_ROM.v │ │ ├── compare_2_RTL.v │ │ ├── compare_2_algo.v │ │ ├── compare_32_CA.v │ │ ├── decoder.v │ │ ├── df_behav.v │ │ ├── encoder.v │ │ ├── find_first_one.v │ │ ├── pipe_2stage.v │ │ ├── priority.v │ │ ├── ring_counter.v │ │ ├── shift_reg_PA.v │ │ ├── shiftreg_PA.v │ │ ├── shiftreg_PA_rev.v │ │ ├── shiftreg_nb.v │ │ ├── synchro_2.v │ │ ├── t_AOI_5_CA1.v │ │ ├── t_AOI_5_CA2.v │ │ ├── t_Bin_Cnt_Part_RTL.v │ │ ├── t_Hex_Keypad_Grayhill_072.v │ │ ├── t_Latch_CA.v │ │ ├── t_Latch_Rbar_CA.v │ │ ├── tr_latch.v │ │ ├── up_down_counter.v │ │ └── word_aligner.v │ ├── add_4cycle.v │ ├── adder_task.v │ ├── arithmetic_unit.v │ ├── asynch_df_behav.v │ ├── barrel_shifter.v │ ├── comparator.v │ ├── compare_2_CA0.v │ ├── compare_2_CA1.txt │ ├── compare_2_CA1.v │ ├── compare_2_ROM.v │ ├── compare_2_RTL.v │ ├── compare_2_algo.v │ ├── compare_32_CA.v │ ├── decoder.v │ ├── df_behav.v │ ├── encoder.v │ ├── find_first_one.v │ ├── pipe_2stage.v │ ├── priority.v │ ├── ring_counter.v │ ├── shift_reg_PA.v │ ├── shiftreg_PA.v │ ├── shiftreg_PA_rev.v │ ├── shiftreg_nb.v │ ├── synchro_2.v │ ├── t_AOI_5_CA1.v │ ├── t_AOI_5_CA2.v │ ├── t_Bin_Cnt_Part_RTL.v │ ├── t_Hex_Keypad_Grayhill_072.v │ ├── t_Latch_CA.v │ ├── t_Latch_Rbar_CA.v │ ├── tr_latch.v │ ├── up_down_counter.v │ └── word_aligner.v │ ├── Chapter 6 │ ├── ADDVB_Models_6.doc │ ├── Add_Accum_1.v │ ├── Add_Accum_2.v │ ├── Add_Accum_both.v │ ├── BCD_to_Excess_3a.v │ ├── BCD_to_Excess_3b.v │ ├── BCD_to_Excess_3b_Post.v │ ├── BCD_to_Excess_3c.v │ ├── BCD_to_Excess_3c_Post.v │ ├── Bi_dir_bus.v │ ├── D_reg4_a.v │ ├── Latched_Seven_Seg_Display.v │ ├── NRZI.v │ ├── NRZ_2_Manchester_Mealy.v │ ├── NRZ_2_Manchester_Mealy_Post.v │ ├── NRZ_2_Manchester_Moore.v │ ├── NRZ_2_Manchester_Moore_Post.v │ ├── Seq_Rec_3_1s.v │ ├── Seq_Rec_3_1s_Mealy.v │ ├── Seq_Rec_3_1s_Moore.v │ ├── Seq_Rec_3_1s_Shft_Reg.v │ ├── Seq_Rec_Moore_imp.v │ ├── Test_Seq_Rec_Moore_imp.v │ ├── Test_count_ones_IMP.v │ ├── Test_count_ones_SD.v │ ├── Test_count_ones_SD_0.v │ ├── Test_count_ones_SM.v │ ├── Test_count_ones_a.v │ ├── Test_count_ones_b.v │ ├── Test_count_ones_c.v │ ├── Test_count_ones_d.v │ ├── Uni_dir_bus.v.doc │ ├── _vti_cnf │ │ ├── ADDVB_Models_6.doc │ │ ├── Add_Accum_1.v │ │ ├── Add_Accum_2.v │ │ ├── Add_Accum_both.v │ │ ├── BCD_to_Excess_3a.v │ │ ├── BCD_to_Excess_3b.v │ │ ├── BCD_to_Excess_3b_Post.v │ │ ├── BCD_to_Excess_3c.v │ │ ├── BCD_to_Excess_3c_Post.v │ │ ├── Bi_dir_bus.v │ │ ├── D_reg4_a.v │ │ ├── Latched_Seven_Seg_Display.v │ │ ├── NRZI.v │ │ ├── NRZ_2_Manchester_Mealy.v │ │ ├── NRZ_2_Manchester_Mealy_Post.v │ │ ├── NRZ_2_Manchester_Moore.v │ │ ├── NRZ_2_Manchester_Moore_Post.v │ │ ├── Seq_Rec_3_1s.v │ │ ├── Seq_Rec_3_1s_Mealy.v │ │ ├── Seq_Rec_3_1s_Moore.v │ │ ├── Seq_Rec_3_1s_Shft_Reg.v │ │ ├── Seq_Rec_Moore_imp.v │ │ ├── Test_Seq_Rec_Moore_imp.v │ │ ├── Test_count_ones_IMP.v │ │ ├── Test_count_ones_SD.v │ │ ├── Test_count_ones_SM.v │ │ ├── Test_count_ones_a.v │ │ ├── Test_count_ones_b.v │ │ ├── Test_count_ones_c.v │ │ ├── Test_count_ones_d.v │ │ ├── Uni_dir_bus.v.doc │ │ ├── alu_with_z1.v │ │ ├── badd_4.v │ │ ├── boole_opt.v │ │ ├── count_ones_IMP.v │ │ ├── count_ones_SD.v │ │ ├── count_ones_SM.v │ │ ├── count_ones_a.v │ │ ├── count_ones_b.v │ │ ├── count_ones_b0.v │ │ ├── count_ones_b1.v │ │ ├── count_ones_b2.v │ │ ├── count_ones_c.v │ │ ├── count_ones_d.v │ │ ├── expression_sub.v │ │ ├── expression_sub_nb.v │ │ ├── for_and_loop_comb.v │ │ ├── latch_if1.v │ │ ├── latch_if2.v │ │ ├── multiple_reg_assign.v │ │ ├── mux_4pri.v │ │ ├── mux_latch.v │ │ ├── mux_logic.v │ │ ├── mux_reg.v │ │ ├── operator_group.v │ │ ├── or4_behav.v │ │ ├── or4_behav_latch.v │ │ ├── or_nand.v │ │ ├── res_share.v │ │ ├── ripple_counter.v │ │ ├── shifter_1.v │ │ ├── shifter_2.v │ │ ├── swap_synch.v │ │ ├── t_BCD_Excess_3.v │ │ └── test_NRZ_2_Manchester_Moore.v │ ├── alu_with_z1.v │ ├── badd_4.v │ ├── boole_opt.v │ ├── count_ones_IMP.v │ ├── count_ones_SD.v │ ├── count_ones_SD_0.v │ ├── count_ones_SM.v │ ├── count_ones_a.v │ ├── count_ones_b.v │ ├── count_ones_b0.v │ ├── count_ones_b1.v │ ├── count_ones_b2.v │ ├── count_ones_c.v │ ├── count_ones_d.v │ ├── expression_sub.v │ ├── expression_sub_nb.v │ ├── for_and_loop_comb.v │ ├── latch_if1.v │ ├── latch_if2.v │ ├── multiple_reg_assign.v │ ├── mux_4pri.v │ ├── mux_latch.v │ ├── mux_logic.v │ ├── mux_reg.v │ ├── operator_group.v │ ├── or4_behav.v │ ├── or4_behav_latch.v │ ├── or_nand.v │ ├── res_share.v │ ├── ripple_counter.v │ ├── shifter_1.v │ ├── shifter_2.v │ ├── swap_synch.v │ ├── t_BCD_Excess_3.v │ └── test_NRZ_2_Manchester_Moore.v │ ├── Chapter 7 │ ├── ADDVB_Models_7.doc │ ├── ADDVB_Models_7.v.txt │ ├── Bin_Cnt_Part_RTL.v │ ├── Bin_Cnt_Part_RTL_by_3.v │ ├── Clock_Unit.v │ ├── Gap_Finder.doc │ ├── Gap_Finder.v │ ├── RISC_SPM.v │ ├── UART_xmtr_Arch.v │ ├── _vti_cnf │ │ ├── ADDVB_Models_7.doc │ │ ├── Bin_Cnt_Part_RTL.v │ │ ├── Bin_Cnt_Part_RTL_by_3.v │ │ ├── RISC_SPM.v │ │ ├── UART_xmtr_Arch.v │ │ ├── t_Bin_Cnt_Part_RTL_by_3.v │ │ ├── test_RISC_SPM.v │ │ ├── uart8_rcvr.v │ │ └── uart8_rcvr_partition.v │ ├── t_Bin_Cnt_Part_RTL_by_3.v │ ├── test_RISC_SPM.v │ ├── uart8_rcvr.v │ └── uart8_rcvr_partition.v │ ├── Chapter 8 │ ├── ADDVB_Models_8.doc │ ├── BCD_to_Excess_3_ROM.v │ ├── Counter8_prog.v │ ├── FIFO.v │ ├── PLA_array.v │ ├── PLA_plane.v │ ├── RAM_2048_8.v │ ├── RAM_static.v │ ├── RAM_static_BD.v │ ├── Row_Signal.v │ ├── SRAM_with_Con.v │ ├── _vti_cnf │ │ ├── ADDVB_Models_8.doc │ │ ├── BCD_to_Excess_3_ROM.v │ │ ├── Counter8_prog.v │ │ ├── FIFO.v │ │ ├── PLA_array.v │ │ ├── PLA_plane.v │ │ ├── RAM_2048_8.v │ │ ├── RAM_static.v │ │ ├── RAM_static_BD.v │ │ ├── Row_Signal.v │ │ ├── SRAM_with_Con.v │ │ ├── t_keypad_FIFO.v │ │ └── top_keypad_FIFO.v │ ├── t_keypad_FIFO.v │ └── top_keypad_FIFO.v │ ├── Chapter 9 │ ├── ADDVB_Models_9.doc │ ├── Bubble Sorter │ │ ├── Bubble_sort.v │ │ ├── _vti_cnf │ │ │ └── Bubble_sort.v │ │ └── t_Bubble_Sort.v │ ├── DSP │ │ ├── FIR_Gaussian.v │ │ ├── IIR_Filter.v │ │ ├── Integrator_Seq.v │ │ ├── _vti_cnf │ │ │ ├── FIR_Gaussian.v │ │ │ ├── IIR_Filter.v │ │ │ ├── Integrator_Seq.v │ │ │ ├── decimator_1.v │ │ │ ├── decimator_2.v │ │ │ ├── decimator_3.v │ │ │ ├── integrator_par.v │ │ │ ├── t_Integrator_Seq.v │ │ │ ├── t_decimator_1.v │ │ │ ├── t_decimator_2.v │ │ │ ├── t_decimator_3.v │ │ │ ├── t_integrator_par.v │ │ │ ├── test_FIR_Gaussian.v │ │ │ └── test_IIR.v │ │ ├── decimator_1.v │ │ ├── decimator_2.v │ │ ├── decimator_3.v │ │ ├── integrator_par.v │ │ ├── t_Integrator_Seq.v │ │ ├── t_decimator_1.v │ │ ├── t_decimator_2.v │ │ ├── t_decimator_3.v │ │ ├── t_integrator_par.v │ │ ├── test_FIR_Gaussian.v │ │ └── test_IIR.v │ ├── Pipeline and FIFO │ │ ├── Circular_Buffer_1.v │ │ ├── Circular_Buffer_2.v │ │ ├── FIFO_Buffer.v │ │ ├── Ser_Par_Conv_32.v │ │ ├── Ser_Par_Conv_8.v │ │ ├── _vti_cnf │ │ │ ├── Circular_Buffer_1.v │ │ │ ├── Circular_Buffer_2.v │ │ │ ├── FIFO_Buffer.v │ │ │ ├── Ser_Par_Conv_32.v │ │ │ ├── Ser_Par_Conv_8.v │ │ │ ├── t_Circular_Buffers.v │ │ │ ├── t_FIFO_Buffer.v │ │ │ ├── t_FIFO_Clock_Domain_Synch.v │ │ │ ├── t_Ser_Par_Conv_32.v │ │ │ ├── t_Ser_Par_Conv_8.v │ │ │ ├── t_write_synch.v │ │ │ └── write_synch.v │ │ ├── t_Circular_Buffers.v │ │ ├── t_FIFO_Buffer.v │ │ ├── t_FIFO_Clock_Domain_Synch.v │ │ ├── t_Ser_Par_Conv_32.v │ │ ├── t_Ser_Par_Conv_8.v │ │ ├── t_write_synch.v │ │ └── write_synch.v │ ├── Pixel Converter │ │ ├── Image_Converter_0.v │ │ ├── Image_Converter_1.v │ │ ├── Image_Converter_Baseline.v │ │ ├── Image_converter_2.v │ │ ├── _vti_cnf │ │ │ ├── Image_Converter_0.v │ │ │ ├── Image_Converter_1.v │ │ │ ├── Image_Converter_Baseline.v │ │ │ ├── Image_converter_2.v │ │ │ ├── t_Image_Converter_0.v │ │ │ ├── t_Image_Converter_1.v │ │ │ ├── t_Image_Converter_2.v │ │ │ └── t_Image_Converter_Baseline.v │ │ ├── t_Image_Converter_0.v │ │ ├── t_Image_Converter_1.v │ │ ├── t_Image_Converter_2.v │ │ └── t_Image_Converter_Baseline.v │ ├── _vti_cnf │ │ └── ADDVB_Models_9.doc │ └── add_16_pipe.v │ ├── Clock generator │ ├── Clock_Prog.v │ ├── Clock_Unit.v │ ├── clock.v │ ├── clock_1_2.v │ └── clock_gen.v │ ├── FAQs.doc │ ├── Models and Testbenches 11_10_2004 │ ├── Chapter 10 │ │ ├── ADDVB_Models_10.doc │ │ ├── Dividers │ │ │ ├── Divider_RR_STG.v │ │ │ ├── Divider_STG_0.v │ │ │ ├── Divider_STG_0_sub.v │ │ │ ├── Divider_STG_1.v │ │ │ ├── _vti_cnf │ │ │ │ ├── Divider_RR_STG.v │ │ │ │ ├── Divider_STG_0.v │ │ │ │ ├── Divider_STG_0_sub.v │ │ │ │ ├── Divider_STG_1.v │ │ │ │ └── t_Divider_RR_STG.v │ │ │ └── t_Divider_RR_STG.v │ │ ├── Multipliers │ │ │ ├── Multiplier_ASM_0.v │ │ │ ├── Multiplier_ASM_1.v │ │ │ ├── Multiplier_Booth_STG_0.v │ │ │ ├── Multiplier_Implicit_1.v │ │ │ ├── Multiplier_Implicit_2.v │ │ │ ├── Multiplier_RR_ASM.v │ │ │ ├── Multiplier_STG_0.v │ │ │ ├── Multiplier_STG_1.v │ │ │ ├── Radix_4__STG_0.v │ │ │ └── _vti_cnf │ │ │ │ ├── Multiplier_ASM_0.v │ │ │ │ ├── Multiplier_ASM_1.v │ │ │ │ ├── Multiplier_Booth_STG_0.v │ │ │ │ ├── Multiplier_Implicit_1.v │ │ │ │ ├── Multiplier_Implicit_2.v │ │ │ │ ├── Multiplier_RR_ASM.v │ │ │ │ ├── Multiplier_STG_0.v │ │ │ │ ├── Multiplier_STG_1.v │ │ │ │ └── Radix_4__STG_0.v │ │ └── _vti_cnf │ │ │ └── ADDVB_Models_10.doc │ ├── Chapter 11 │ │ ├── ADDVB_Models_11.doc │ │ ├── BIST │ │ │ ├── ASIC_with_BIST.v │ │ │ ├── _vti_cnf │ │ │ │ ├── ASIC_with_BIST.v │ │ │ │ └── t_ASIC_with_BIST.v │ │ │ └── t_ASIC_with_BIST.v │ │ ├── JTAG │ │ │ ├── ASIC_with_TAP.v │ │ │ ├── BR_Cell.v │ │ │ ├── BSC_Cell.v │ │ │ ├── Boundary_Scan_Register.v │ │ │ ├── IR_Cell.v │ │ │ ├── Instruction_Decoder.v │ │ │ ├── Instruction_Register.v │ │ │ ├── TAP_FSM.v │ │ │ ├── TDI_Generator.v │ │ │ ├── TDO_Monitor.v │ │ │ ├── _vti_cnf │ │ │ │ ├── ASIC_with_TAP.v │ │ │ │ ├── BR_Cell.v │ │ │ │ ├── BSC_Cell.v │ │ │ │ ├── Boundary_Scan_Register.v │ │ │ │ ├── IR_Cell.v │ │ │ │ ├── Instruction_Decoder.v │ │ │ │ ├── Instruction_Register.v │ │ │ │ ├── TAP_FSM.v │ │ │ │ ├── TDI_Generator.v │ │ │ │ ├── TDO_Monitor.v │ │ │ │ ├── t_ASIC_with_TAP.v │ │ │ │ ├── t_Boundary_Scan_Register.v │ │ │ │ ├── t_Instruction_Register.v │ │ │ │ └── tap_controller.v │ │ │ ├── t_ASIC_with_TAP.v │ │ │ ├── t_Boundary_Scan_Register.v │ │ │ ├── t_Instruction_Register.v │ │ │ └── tap_controller.v │ │ ├── Latch_Races.v │ │ └── _vti_cnf │ │ │ ├── ADDVB_Models_11.doc │ │ │ └── Latch_Races.v │ ├── Chapter 4 │ │ ├── ADDVB_Models_4.doc │ │ ├── AOI_UDP.v │ │ ├── AOI_str.v │ │ ├── Add_rca_4.v │ │ ├── Mux_2_32_CA.v │ │ ├── Mux_4_32_CA.v │ │ ├── Mux_4_32_CA_if.v │ │ ├── Mux_4_32_case.v │ │ ├── _vti_cnf │ │ │ ├── ADDVB_Models_4.doc │ │ │ ├── AOI_UDP.v │ │ │ ├── AOI_str.v │ │ │ ├── Add_rca_4.v │ │ │ ├── Mux_2_32_CA.v │ │ │ ├── Mux_4_32_CA.v │ │ │ ├── Mux_4_32_CA_if.v │ │ │ ├── Mux_4_32_case.v │ │ │ ├── compare_2_str.v │ │ │ ├── compare_4_str.v │ │ │ ├── t_Add_full_ASIC.v │ │ │ ├── t_Add_full_unit_delay.v │ │ │ ├── t_Add_half.v │ │ │ ├── t_Add_rca_4_Unit_Delay.v │ │ │ └── test_hiZ.v │ │ ├── compare_2_str.v │ │ ├── compare_4_str.v │ │ ├── t_Add_full_ASIC.v │ │ ├── t_Add_full_unit_delay.v │ │ ├── t_Add_half.v │ │ ├── t_Add_rca_4_Unit_Delay.v │ │ └── test_hiZ.v │ ├── Chapter 5 │ │ ├── ADDVB_Models_5.doc │ │ ├── AOI_5_CA0.v │ │ ├── AOI_5_CA1.v │ │ ├── AOI_5_CA2.v │ │ ├── AOI_5_CA3.v │ │ ├── Auto_LFSR_ALGO.v │ │ ├── Auto_LFSR_Param.v │ │ ├── Auto_LFSR_RTL.v │ │ ├── Hex_Keypad_Grayhill_072.v │ │ ├── Latch_CA.v │ │ ├── Latch_Rbar_CA.v │ │ ├── Majority.v │ │ ├── Majority_4b.v │ │ ├── Mux_4_32_CA.v │ │ ├── Mux_4_32_case.v │ │ ├── Mux_4_32_if.v │ │ ├── Par_load_reg4.v │ │ ├── Register_File.v │ │ ├── Row_Signal.v │ │ ├── Seven_Seg_Display.v │ │ ├── Shift_reg4.v │ │ ├── Synchronizer.v │ │ ├── Universal_Shift_Reg.v │ │ ├── Universal_Shift_Register.v │ │ ├── Up_Down_Implicit1.v │ │ ├── _vti_cnf │ │ │ ├── ADDVB_Models_5.doc │ │ │ ├── AOI_5_CA0.v │ │ │ ├── AOI_5_CA1.v │ │ │ ├── AOI_5_CA2.v │ │ │ ├── AOI_5_CA3.v │ │ │ ├── Auto_LFSR_ALGO.v │ │ │ ├── Auto_LFSR_Param.v │ │ │ ├── Auto_LFSR_RTL.v │ │ │ ├── Hex_Keypad_Grayhill_072.v │ │ │ ├── Latch_CA.v │ │ │ ├── Latch_Rbar_CA.v │ │ │ ├── Majority.v │ │ │ ├── Majority_4b.v │ │ │ ├── Mux_4_32_CA.v │ │ │ ├── Mux_4_32_case.v │ │ │ ├── Mux_4_32_if.v │ │ │ ├── Par_load_reg4.v │ │ │ ├── Register_File.v │ │ │ ├── Row_Signal.v │ │ │ ├── Seven_Seg_Display.v │ │ │ ├── Shift_reg4.v │ │ │ ├── Synchronizer.v │ │ │ ├── Universal_Shift_Reg.v │ │ │ ├── Universal_Shift_Register.v │ │ │ ├── Up_Down_Implicit1.v │ │ │ ├── add_4cycle.v │ │ │ ├── adder_task.v │ │ │ ├── arithmetic_unit.v │ │ │ ├── asynch_df_behav.v │ │ │ ├── barrel_shifter.v │ │ │ ├── comparator.v │ │ │ ├── compare_2_CA0.v │ │ │ ├── compare_2_CA1.txt │ │ │ ├── compare_2_CA1.v │ │ │ ├── compare_2_ROM.v │ │ │ ├── compare_2_RTL.v │ │ │ ├── compare_2_algo.v │ │ │ ├── compare_32_CA.v │ │ │ ├── decoder.v │ │ │ ├── df_behav.v │ │ │ ├── encoder.v │ │ │ ├── find_first_one.v │ │ │ ├── pipe_2stage.v │ │ │ ├── priority.v │ │ │ ├── ring_counter.v │ │ │ ├── shift_reg_PA.v │ │ │ ├── shiftreg_PA.v │ │ │ ├── shiftreg_PA_rev.v │ │ │ ├── shiftreg_nb.v │ │ │ ├── synchro_2.v │ │ │ ├── t_AOI_5_CA1.v │ │ │ ├── t_AOI_5_CA2.v │ │ │ ├── t_Bin_Cnt_Part_RTL.v │ │ │ ├── t_Hex_Keypad_Grayhill_072.v │ │ │ ├── t_Latch_CA.v │ │ │ ├── t_Latch_Rbar_CA.v │ │ │ ├── tr_latch.v │ │ │ ├── up_down_counter.v │ │ │ └── word_aligner.v │ │ ├── add_4cycle.v │ │ ├── adder_task.v │ │ ├── arithmetic_unit.v │ │ ├── asynch_df_behav.v │ │ ├── barrel_shifter.v │ │ ├── comparator.v │ │ ├── compare_2_CA0.v │ │ ├── compare_2_CA1.txt │ │ ├── compare_2_CA1.v │ │ ├── compare_2_ROM.v │ │ ├── compare_2_RTL.v │ │ ├── compare_2_algo.v │ │ ├── compare_32_CA.v │ │ ├── decoder.v │ │ ├── df_behav.v │ │ ├── encoder.v │ │ ├── find_first_one.v │ │ ├── pipe_2stage.v │ │ ├── priority.v │ │ ├── ring_counter.v │ │ ├── shift_reg_PA.v │ │ ├── shiftreg_PA.v │ │ ├── shiftreg_PA_rev.v │ │ ├── shiftreg_nb.v │ │ ├── synchro_2.v │ │ ├── t_AOI_5_CA1.v │ │ ├── t_AOI_5_CA2.v │ │ ├── t_Bin_Cnt_Part_RTL.v │ │ ├── t_Hex_Keypad_Grayhill_072.v │ │ ├── t_Latch_CA.v │ │ ├── t_Latch_Rbar_CA.v │ │ ├── tr_latch.v │ │ ├── up_down_counter.v │ │ └── word_aligner.v │ ├── Chapter 6 │ │ ├── ADDVB_Models_6.doc │ │ ├── Add_Accum_1.v │ │ ├── Add_Accum_2.v │ │ ├── Add_Accum_both.v │ │ ├── BCD_to_Excess_3a.v │ │ ├── BCD_to_Excess_3b.v │ │ ├── BCD_to_Excess_3b_Post.v │ │ ├── BCD_to_Excess_3c.v │ │ ├── BCD_to_Excess_3c_Post.v │ │ ├── Bi_dir_bus.v │ │ ├── D_reg4_a.v │ │ ├── Latched_Seven_Seg_Display.v │ │ ├── NRZI.v │ │ ├── NRZ_2_Manchester_Mealy.v │ │ ├── NRZ_2_Manchester_Mealy_Post.v │ │ ├── NRZ_2_Manchester_Moore.v │ │ ├── NRZ_2_Manchester_Moore_Post.v │ │ ├── Seq_Rec_3_1s.v │ │ ├── Seq_Rec_3_1s_Mealy.v │ │ ├── Seq_Rec_3_1s_Moore.v │ │ ├── Seq_Rec_3_1s_Shft_Reg.v │ │ ├── Seq_Rec_Moore_imp.v │ │ ├── Test_Seq_Rec_Moore_imp.v │ │ ├── Test_count_ones_IMP.v │ │ ├── Test_count_ones_SD.v │ │ ├── Test_count_ones_SD_0.v │ │ ├── Test_count_ones_SM.v │ │ ├── Test_count_ones_a.v │ │ ├── Test_count_ones_b.v │ │ ├── Test_count_ones_c.v │ │ ├── Test_count_ones_d.v │ │ ├── Uni_dir_bus.v.doc │ │ ├── _vti_cnf │ │ │ ├── ADDVB_Models_6.doc │ │ │ ├── Add_Accum_1.v │ │ │ ├── Add_Accum_2.v │ │ │ ├── Add_Accum_both.v │ │ │ ├── BCD_to_Excess_3a.v │ │ │ ├── BCD_to_Excess_3b.v │ │ │ ├── BCD_to_Excess_3b_Post.v │ │ │ ├── BCD_to_Excess_3c.v │ │ │ ├── BCD_to_Excess_3c_Post.v │ │ │ ├── Bi_dir_bus.v │ │ │ ├── D_reg4_a.v │ │ │ ├── Latched_Seven_Seg_Display.v │ │ │ ├── NRZI.v │ │ │ ├── NRZ_2_Manchester_Mealy.v │ │ │ ├── NRZ_2_Manchester_Mealy_Post.v │ │ │ ├── NRZ_2_Manchester_Moore.v │ │ │ ├── NRZ_2_Manchester_Moore_Post.v │ │ │ ├── Seq_Rec_3_1s.v │ │ │ ├── Seq_Rec_3_1s_Mealy.v │ │ │ ├── Seq_Rec_3_1s_Moore.v │ │ │ ├── Seq_Rec_3_1s_Shft_Reg.v │ │ │ ├── Seq_Rec_Moore_imp.v │ │ │ ├── Test_Seq_Rec_Moore_imp.v │ │ │ ├── Test_count_ones_IMP.v │ │ │ ├── Test_count_ones_SD.v │ │ │ ├── Test_count_ones_SM.v │ │ │ ├── Test_count_ones_a.v │ │ │ ├── Test_count_ones_b.v │ │ │ ├── Test_count_ones_c.v │ │ │ ├── Test_count_ones_d.v │ │ │ ├── Uni_dir_bus.v.doc │ │ │ ├── alu_with_z1.v │ │ │ ├── badd_4.v │ │ │ ├── boole_opt.v │ │ │ ├── count_ones_IMP.v │ │ │ ├── count_ones_SD.v │ │ │ ├── count_ones_SM.v │ │ │ ├── count_ones_a.v │ │ │ ├── count_ones_b.v │ │ │ ├── count_ones_b0.v │ │ │ ├── count_ones_b1.v │ │ │ ├── count_ones_b2.v │ │ │ ├── count_ones_c.v │ │ │ ├── count_ones_d.v │ │ │ ├── expression_sub.v │ │ │ ├── expression_sub_nb.v │ │ │ ├── for_and_loop_comb.v │ │ │ ├── latch_if1.v │ │ │ ├── latch_if2.v │ │ │ ├── multiple_reg_assign.v │ │ │ ├── mux_4pri.v │ │ │ ├── mux_latch.v │ │ │ ├── mux_logic.v │ │ │ ├── mux_reg.v │ │ │ ├── operator_group.v │ │ │ ├── or4_behav.v │ │ │ ├── or4_behav_latch.v │ │ │ ├── or_nand.v │ │ │ ├── res_share.v │ │ │ ├── ripple_counter.v │ │ │ ├── shifter_1.v │ │ │ ├── shifter_2.v │ │ │ ├── swap_synch.v │ │ │ ├── t_BCD_Excess_3.v │ │ │ └── test_NRZ_2_Manchester_Moore.v │ │ ├── alu_with_z1.v │ │ ├── badd_4.v │ │ ├── boole_opt.v │ │ ├── count_ones_IMP.v │ │ ├── count_ones_SD.v │ │ ├── count_ones_SD_0.v │ │ ├── count_ones_SM.v │ │ ├── count_ones_a.v │ │ ├── count_ones_b.v │ │ ├── count_ones_b0.v │ │ ├── count_ones_b1.v │ │ ├── count_ones_b2.v │ │ ├── count_ones_c.v │ │ ├── count_ones_d.v │ │ ├── expression_sub.v │ │ ├── expression_sub_nb.v │ │ ├── for_and_loop_comb.v │ │ ├── latch_if1.v │ │ ├── latch_if2.v │ │ ├── multiple_reg_assign.v │ │ ├── mux_4pri.v │ │ ├── mux_latch.v │ │ ├── mux_logic.v │ │ ├── mux_reg.v │ │ ├── operator_group.v │ │ ├── or4_behav.v │ │ ├── or4_behav_latch.v │ │ ├── or_nand.v │ │ ├── res_share.v │ │ ├── ripple_counter.v │ │ ├── shifter_1.v │ │ ├── shifter_2.v │ │ ├── swap_synch.v │ │ ├── t_BCD_Excess_3.v │ │ └── test_NRZ_2_Manchester_Moore.v │ ├── Chapter 7 │ │ ├── ADDVB_Models_7.doc │ │ ├── ADDVB_Models_7.v.txt │ │ ├── Bin_Cnt_Part_RTL.v │ │ ├── Bin_Cnt_Part_RTL_by_3.v │ │ ├── Clock_Unit.v │ │ ├── Gap_Finder.doc │ │ ├── Gap_Finder.v │ │ ├── RISC_SPM.v │ │ ├── UART_xmtr_Arch.v │ │ ├── _vti_cnf │ │ │ ├── ADDVB_Models_7.doc │ │ │ ├── Bin_Cnt_Part_RTL.v │ │ │ ├── Bin_Cnt_Part_RTL_by_3.v │ │ │ ├── RISC_SPM.v │ │ │ ├── UART_xmtr_Arch.v │ │ │ ├── t_Bin_Cnt_Part_RTL_by_3.v │ │ │ ├── test_RISC_SPM.v │ │ │ ├── uart8_rcvr.v │ │ │ └── uart8_rcvr_partition.v │ │ ├── t_Bin_Cnt_Part_RTL_by_3.v │ │ ├── test_RISC_SPM.v │ │ ├── uart8_rcvr.v │ │ └── uart8_rcvr_partition.v │ ├── Chapter 8 │ │ ├── ADDVB_Models_8.doc │ │ ├── BCD_to_Excess_3_ROM.v │ │ ├── Counter8_prog.v │ │ ├── FIFO.v │ │ ├── PLA_array.v │ │ ├── PLA_plane.v │ │ ├── RAM_2048_8.v │ │ ├── RAM_static.v │ │ ├── RAM_static_BD.v │ │ ├── Row_Signal.v │ │ ├── SRAM_with_Con.v │ │ ├── _vti_cnf │ │ │ ├── ADDVB_Models_8.doc │ │ │ ├── BCD_to_Excess_3_ROM.v │ │ │ ├── Counter8_prog.v │ │ │ ├── FIFO.v │ │ │ ├── PLA_array.v │ │ │ ├── PLA_plane.v │ │ │ ├── RAM_2048_8.v │ │ │ ├── RAM_static.v │ │ │ ├── RAM_static_BD.v │ │ │ ├── Row_Signal.v │ │ │ ├── SRAM_with_Con.v │ │ │ ├── t_keypad_FIFO.v │ │ │ └── top_keypad_FIFO.v │ │ ├── t_keypad_FIFO.v │ │ └── top_keypad_FIFO.v │ ├── Chapter 9 │ │ ├── ADDVB_Models_9.doc │ │ ├── Bubble Sorter │ │ │ ├── Bubble_sort.v │ │ │ └── _vti_cnf │ │ │ │ └── Bubble_sort.v │ │ ├── DSP │ │ │ ├── FIR_Gaussian.v │ │ │ ├── IIR_Filter.v │ │ │ ├── Integrator_Seq.v │ │ │ ├── _vti_cnf │ │ │ │ ├── FIR_Gaussian.v │ │ │ │ ├── IIR_Filter.v │ │ │ │ ├── Integrator_Seq.v │ │ │ │ ├── decimator_1.v │ │ │ │ ├── decimator_2.v │ │ │ │ ├── decimator_3.v │ │ │ │ ├── integrator_par.v │ │ │ │ ├── t_Integrator_Seq.v │ │ │ │ ├── t_decimator_1.v │ │ │ │ ├── t_decimator_2.v │ │ │ │ ├── t_decimator_3.v │ │ │ │ ├── t_integrator_par.v │ │ │ │ ├── test_FIR_Gaussian.v │ │ │ │ └── test_IIR.v │ │ │ ├── decimator_1.v │ │ │ ├── decimator_2.v │ │ │ ├── decimator_3.v │ │ │ ├── integrator_par.v │ │ │ ├── t_Integrator_Seq.v │ │ │ ├── t_decimator_1.v │ │ │ ├── t_decimator_2.v │ │ │ ├── t_decimator_3.v │ │ │ ├── t_integrator_par.v │ │ │ ├── test_FIR_Gaussian.v │ │ │ └── test_IIR.v │ │ ├── Pipeline and FIFO │ │ │ ├── Circular_Buffer_1.v │ │ │ ├── Circular_Buffer_2.v │ │ │ ├── FIFO_Buffer.v │ │ │ ├── Ser_Par_Conv_32.v │ │ │ ├── Ser_Par_Conv_8.v │ │ │ ├── _vti_cnf │ │ │ │ ├── Circular_Buffer_1.v │ │ │ │ ├── Circular_Buffer_2.v │ │ │ │ ├── FIFO_Buffer.v │ │ │ │ ├── Ser_Par_Conv_32.v │ │ │ │ ├── Ser_Par_Conv_8.v │ │ │ │ ├── t_Circular_Buffers.v │ │ │ │ ├── t_FIFO_Buffer.v │ │ │ │ ├── t_FIFO_Clock_Domain_Synch.v │ │ │ │ ├── t_Ser_Par_Conv_32.v │ │ │ │ ├── t_Ser_Par_Conv_8.v │ │ │ │ ├── t_write_synch.v │ │ │ │ └── write_synch.v │ │ │ ├── t_Circular_Buffers.v │ │ │ ├── t_FIFO_Buffer.v │ │ │ ├── t_FIFO_Clock_Domain_Synch.v │ │ │ ├── t_Ser_Par_Conv_32.v │ │ │ ├── t_Ser_Par_Conv_8.v │ │ │ ├── t_write_synch.v │ │ │ └── write_synch.v │ │ ├── Pixel Converter │ │ │ ├── Image_Converter_0.v │ │ │ ├── Image_Converter_1.v │ │ │ ├── Image_Converter_Baseline.v │ │ │ ├── Image_converter_2.v │ │ │ ├── _vti_cnf │ │ │ │ ├── Image_Converter_0.v │ │ │ │ ├── Image_Converter_1.v │ │ │ │ ├── Image_Converter_Baseline.v │ │ │ │ ├── Image_converter_2.v │ │ │ │ ├── t_Image_Converter_0.v │ │ │ │ ├── t_Image_Converter_1.v │ │ │ │ ├── t_Image_Converter_2.v │ │ │ │ └── t_Image_Converter_Baseline.v │ │ │ ├── t_Image_Converter_0.v │ │ │ ├── t_Image_Converter_1.v │ │ │ ├── t_Image_Converter_2.v │ │ │ └── t_Image_Converter_Baseline.v │ │ └── _vti_cnf │ │ │ └── ADDVB_Models_9.doc │ ├── Clock generator │ │ ├── Clock_Prog.v │ │ ├── Clock_Unit.v │ │ ├── clock.v │ │ ├── clock_1_2.v │ │ └── clock_gen.v │ └── README.txt │ └── README.txt ├── hmc-mips-7-3-15 ├── debug.fdo ├── doc │ ├── Test_Plan.doc │ ├── decodestage.vsd │ ├── executestage.vsd │ ├── fetchstage.vsd │ ├── memorystage.vsd │ ├── mipsblock.vsd │ └── originalblock.vsd ├── fpga.fdo ├── multdiv.fdo ├── src │ ├── README.txt │ ├── components.v │ ├── imem.v │ ├── mem.v │ ├── memtests.v │ ├── mipspipelined.v │ ├── multdiv.v │ └── top.v ├── testing │ ├── Makefile │ ├── adelaide │ │ ├── Cache-for_testing.jelib │ │ ├── Cache.jelib │ │ ├── DecoderBench.java │ │ ├── muddlib07.jelib │ │ ├── test_adrtagdatalogic.cmd │ │ ├── test_byteenlog.cmd │ │ ├── test_dataout_read.cmd │ │ ├── test_dataout_write.cmd │ │ ├── test_decoder64.cmd │ │ ├── test_decoder64_1.cmd │ │ ├── test_mux2_1x_32.cmd │ │ ├── test_mux2_4.cmd │ │ ├── test_mux2_c_1x.cmd │ │ ├── test_mux2_dp_1x.cmd │ │ ├── test_mux2_zip.cmd │ │ └── test_srambit.cmd │ ├── fpga.v │ ├── fpgabench.v │ ├── mipstest.v │ ├── moduletests │ │ ├── md_rand_001.tv │ │ ├── mdvectorgen.py │ │ ├── multdiv.tv │ │ └── multdivtest.v │ ├── test_000.asm │ ├── test_000.dat │ ├── test_001.asm │ ├── test_001.dat │ ├── test_002.asm │ ├── test_002.dat │ ├── test_003.asm │ ├── test_003.dat │ ├── test_004.asm │ ├── test_004.dat │ ├── test_005.asm │ ├── test_005.dat │ ├── test_006.asm │ ├── test_006.dat │ ├── test_007.asm │ ├── test_007.dat │ ├── test_008.asm │ ├── test_008.dat │ ├── test_009.asm │ ├── test_009.dat │ ├── test_010.asm │ ├── test_010.dat │ ├── test_011.asm │ ├── test_011.dat │ ├── test_012.asm │ ├── test_012.c │ ├── test_012.dat │ ├── test_013.asm │ ├── test_013.dat │ ├── test_014.asm │ ├── test_014.dat │ ├── test_015.asm │ ├── test_015.dat │ ├── test_016.c │ ├── test_016.dat │ ├── test_017.c │ ├── test_017.dat │ ├── test_018.asm │ ├── test_018.dat │ ├── test_019.asm │ ├── test_019.dat │ ├── test_020.asm │ ├── test_020.dat │ ├── test_021.asm │ ├── test_021.dat │ ├── test_022.asm │ ├── test_022.dat │ ├── test_023.asm │ ├── test_023.dat │ ├── test_024.asm │ ├── test_024.dat │ ├── test_025.asm │ ├── test_025.dat │ ├── test_026.asm │ ├── test_026.c │ ├── test_026.dat │ └── test_fp_001.c ├── wave_alu.do └── wave_multdiv.do ├── learnVerilog_2013 ├── Cilietti │ ├── Clock_Unit.v │ ├── RISC_SPM.v │ ├── RISC_SPM_20130220155415.jpg │ └── test_RISC_SPM.v └── Verilog HDL │ ├── component.v │ ├── stimulus.v │ └── success_Feb212013.png ├── mips2k └── MIPS2K.v ├── verilog 100 examples ├── ADC_16bit.v ├── ALL.V ├── COMPARE.V ├── DECODER1.V ├── FIFO_2.V ├── MUL16.V ├── MUX8X8.V ├── PLI.TAR ├── PLI │ ├── Makefile │ ├── README │ ├── mypli.c │ ├── mypli.h │ ├── mypli.tab │ ├── mypli.v │ ├── pliread.c │ ├── pliread.dat │ ├── pliread.h │ ├── pliread.tab │ └── pliread.v ├── RISC8.ZIP ├── RISC8 │ ├── BASIC.HEX │ ├── COPYING │ ├── DDS.HEX │ ├── alu.v │ ├── basic.asm │ ├── basic.rom │ ├── cpu.v │ ├── dds.asm │ ├── dds.rom │ ├── dram.v │ ├── exp.v │ ├── hex2v.c │ ├── idec.v │ ├── pram.v │ ├── regs.v │ ├── risc8.gif │ ├── risc8doc.html │ ├── runit │ ├── sindata.c │ ├── sindata.hex │ └── test.v ├── SHIFTER.V ├── SYNTHPIC.ZIP ├── SYNTHPIC │ ├── HEX2VHDL.CPP │ ├── HEX2VHDL.EXE │ ├── PICALU.VHD │ ├── PICCPU.VHD │ ├── PICREGS.VHD │ ├── PICROM.VHD │ ├── PICTEST.CMD │ ├── PICTEST.VHD │ ├── README.TXT │ ├── SYNTHPIC.TXT │ ├── TEST1.ASM │ ├── TEST2.ASM │ ├── TEST3.ASM │ ├── TEST4.ASM │ ├── TEST5.ASM │ └── TEST6.ASM ├── TEST.V ├── adder_8bit.v ├── adder_8bit_2.v ├── binarytogray.v ├── cla_8bits.v ├── dds.v ├── decoder3x8.v ├── div16.v ├── encoder8x3.v ├── encoder8x3_2.v ├── fifo.v ├── fifo_16x16.v ├── framer.v ├── frequency5x2.v ├── full_adder_1.v ├── full_adder_2.v ├── gencrc.v.txt ├── half_adder_1.v ├── half_adder_2.v ├── half_adder_3.v ├── lead_8bits_adder.v ├── lead_8bits_adder2.v ├── mult16.v ├── mult_piped_8x8.v ├── mult_select.v ├── multi_select_1.v ├── myrand.c ├── nco.v ├── onehot.v ├── pic.v ├── sequence_dectect.v ├── string.v ├── test_cla_8bits.v ├── testing.v.txt └── wpulse.v.txt └── verilog_tutorial ├── cnt_tb.v ├── count.pdf └── first_counter.v /README.md: -------------------------------------------------------------------------------- 1 | This is the GitHub for the EE 287 ASIC design class. 2 | Learn the ARM9 Core/ MiniMIPS/ CompArch/ DDCA/ Xilinx/ Synopsys as soon as possible! -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/ADDVB_Models_10.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/ADDVB_Models_10.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Dividers/_vti_cnf/Divider_RR_STG.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:15:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C900D514-94FB-4EA7-B565-37976328442A} 5 | vti_cacheddtm:TX|28 Aug 2002 21:15:02 -0000 6 | vti_filesize:IR|5483 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Dividers/_vti_cnf/Divider_STG_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Jun 2000 15:14:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2D1E736C-BB5F-4138-A1ED-A142159602CB} 5 | vti_cacheddtm:TX|28 Jun 2000 15:14:20 -0000 6 | vti_filesize:IR|4457 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Dividers/_vti_cnf/Divider_STG_0_sub.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|31 Oct 2001 04:15:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{135234A2-13F6-4BFA-A457-A5A69489B8EA} 5 | vti_cacheddtm:TX|31 Oct 2001 04:15:34 -0000 6 | vti_filesize:IR|4386 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Dividers/_vti_cnf/Divider_STG_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|02 Nov 2001 12:07:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{361AB591-D02B-4760-927B-A06ED4864E36} 5 | vti_cacheddtm:TX|02 Nov 2001 12:07:40 -0000 6 | vti_filesize:IR|6402 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Dividers/_vti_cnf/t_Divider_RR_STG.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|02 Nov 2001 12:00:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{479F211D-95F1-4C23-B07E-959EF9F04CFD} 5 | vti_cacheddtm:TX|02 Nov 2001 12:00:34 -0000 6 | vti_filesize:IR|2575 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_ASM_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|16 Jun 2000 01:41:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0BAE86CD-103D-4D55-AEA8-291589A09115} 5 | vti_cacheddtm:TX|16 Jun 2000 01:41:24 -0000 6 | vti_filesize:IR|3475 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_ASM_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|15 Jun 2000 23:57:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3BB2AB5D-7969-4333-BBE5-4A8E9C209485} 5 | vti_cacheddtm:TX|15 Jun 2000 23:57:44 -0000 6 | vti_filesize:IR|3410 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_Booth_STG_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:03:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E8E03B28-62A8-453E-BDC7-25042347D01B} 5 | vti_cacheddtm:TX|28 Aug 2002 21:03:10 -0000 6 | vti_filesize:IR|6365 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_Implicit_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 20:59:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CEB6BBFE-B79A-44CF-8DA2-5937B2D2E43E} 5 | vti_cacheddtm:TX|28 Aug 2002 20:59:20 -0000 6 | vti_filesize:IR|5857 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_Implicit_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|31 May 2000 17:35:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DB4767E0-3DEC-4E7C-B56A-76254A746814} 5 | vti_cacheddtm:TX|31 May 2000 17:35:04 -0000 6 | vti_filesize:IR|7370 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_RR_ASM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:10:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9AE8F8DC-9870-4637-916B-FC5728228E64} 5 | vti_cacheddtm:TX|28 Aug 2002 21:10:18 -0000 6 | vti_filesize:IR|3294 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_STG_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|05 Dec 2002 00:44:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9A4BE984-0BAF-4239-B199-E572683A2D55} 5 | vti_cacheddtm:TX|05 Dec 2002 00:44:40 -0000 6 | vti_filesize:IR|4324 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Multiplier_STG_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|16 Jun 2000 00:02:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{5397970B-4B6F-4C40-9B5C-3A98FA17F35B} 5 | vti_cacheddtm:TX|16 Jun 2000 00:02:48 -0000 6 | vti_filesize:IR|4524 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 10/Multipliers/_vti_cnf/Radix_4__STG_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|19 Jun 2000 16:49:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D3C1EED5-8D29-411D-A160-849A6AF16366} 5 | vti_cacheddtm:TX|19 Jun 2000 16:49:02 -0000 6 | vti_filesize:IR|10340 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/ADDVB_Models_11.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/ADDVB_Models_11.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/BIST/_vti_cnf/ASIC_with_BIST.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|22 Feb 2002 22:23:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{350CE301-99FF-466E-B820-8BEE09FEDB5C} 5 | vti_cacheddtm:TX|22 Feb 2002 22:23:16 -0000 6 | vti_filesize:IR|4144 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/BIST/_vti_cnf/t_ASIC_with_BIST.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Feb 2002 01:59:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0A8AC08F-626C-4966-A6AC-D400A59888AC} 5 | vti_cacheddtm:TX|23 Feb 2002 01:59:42 -0000 6 | vti_filesize:IR|1310 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/BR_Cell.v: -------------------------------------------------------------------------------- 1 | module Bypass_Register(scan_out, scan_in, shiftDR, clockDR); 2 | output scan_out; 3 | input scan_in, shiftDR, clockDR; 4 | reg scan_out; 5 | 6 | always @ (posedge clockDR) scan_out <= scan_in & shiftDR; 7 | 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/ASIC_with_TAP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Mar 2002 15:41:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{077B22A1-99EE-4530-ADC7-38320116D84E} 5 | vti_cacheddtm:TX|08 Mar 2002 15:41:50 -0000 6 | vti_filesize:IR|2844 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/BR_Cell.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|31 Jan 2002 20:48:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0C1D562D-85CA-4666-A239-A2A9062204DE} 5 | vti_cacheddtm:TX|31 Jan 2002 20:48:08 -0000 6 | vti_filesize:IR|220 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/BSC_Cell.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 Jan 2002 23:10:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F004097B-7235-4868-8697-A38ADB39F0AB} 5 | vti_cacheddtm:TX|24 Jan 2002 23:10:34 -0000 6 | vti_filesize:IR|432 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/Boundary_Scan_Register.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|03 Feb 2002 23:40:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F5F63F99-35DE-44FD-B0B2-7177A858F948} 5 | vti_cacheddtm:TX|03 Feb 2002 23:40:18 -0000 6 | vti_filesize:IR|1585 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/IR_Cell.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|21 Jan 2002 13:59:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AB424C10-28CC-44C3-BA14-FC4FBC6FEAFF} 5 | vti_cacheddtm:TX|21 Jan 2002 13:59:20 -0000 6 | vti_filesize:IR|510 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/Instruction_Decoder.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Feb 2002 00:36:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1B71C9C3-F564-4172-8775-6736BC567E0B} 5 | vti_cacheddtm:TX|08 Feb 2002 00:36:20 -0000 6 | vti_filesize:IR|1517 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/Instruction_Register.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|09 Feb 2002 01:36:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3BCD3F9E-1DFF-4687-95E3-179A97679D3E} 5 | vti_cacheddtm:TX|09 Feb 2002 01:36:56 -0000 6 | vti_filesize:IR|797 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/TAP_FSM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|07 Feb 2002 22:28:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F959D017-6C69-4154-BFEB-91073AF5FA3B} 5 | vti_cacheddtm:TX|07 Feb 2002 22:28:42 -0000 6 | vti_filesize:IR|1906 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/TDI_Generator.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Feb 2002 03:43:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EFD3C16A-CB64-428C-BCEE-4A4107F22B11} 5 | vti_cacheddtm:TX|08 Feb 2002 03:43:50 -0000 6 | vti_filesize:IR|509 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/TDO_Monitor.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Feb 2002 03:43:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E0BA2CB5-5A9E-4AAD-83A3-227D9D1BD552} 5 | vti_cacheddtm:TX|08 Feb 2002 03:43:20 -0000 6 | vti_filesize:IR|963 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/t_ASIC_with_TAP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Mar 2002 15:47:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{41DCACE3-610B-44F3-9A0A-8B719D6C0F87} 5 | vti_cacheddtm:TX|08 Mar 2002 15:47:02 -0000 6 | vti_filesize:IR|8127 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/t_Boundary_Scan_Register.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Feb 2002 23:54:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{66C8A4FC-DC32-4EC7-A78A-D5AA7873A30A} 5 | vti_cacheddtm:TX|08 Feb 2002 23:54:52 -0000 6 | vti_filesize:IR|891 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/t_Instruction_Register.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|09 Feb 2002 01:36:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{94A37749-BF91-4398-84DD-73A6CCB73496} 5 | vti_cacheddtm:TX|09 Feb 2002 01:36:24 -0000 6 | vti_filesize:IR|1060 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/JTAG/_vti_cnf/tap_controller.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|09 Mar 2002 14:34:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0C0A31AD-C89C-4523-8CDF-23AB38A2F5CF} 5 | vti_cacheddtm:TX|09 Mar 2002 14:34:08 -0000 6 | vti_filesize:IR|3178 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 11/_vti_cnf/Latch_Races.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|01 Jan 2002 17:36:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2E94D1AA-33CF-46DC-8D1D-92D320919DA5} 5 | vti_cacheddtm:TX|01 Jan 2002 17:36:22 -0000 6 | vti_filesize:IR|1086 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/ADDVB_Models_4.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/ADDVB_Models_4.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/AOI_str.v: -------------------------------------------------------------------------------- 1 | module AOI_str (y, x_in1, x_in2, x_in3, x_in4, x_in5); 2 | output y; 3 | input x_in1, x_in2, x_in3, x_in4, x_in5; 4 | 5 | wire y1, y2; // Internal wires 6 | 7 | nor (y_out, y1, y2); 8 | and (y1, x_in1, x_in2); 9 | and (y2, x_in3, x_in4, x_in5); 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/Mux_2_32_CA.v: -------------------------------------------------------------------------------- 1 | module Mux_2_32_CA (mux_out, data_1, data_0, select); 2 | parameter word_size = 32; 3 | output [word_size -1: 0] mux_out; 4 | input [word_size -1: 0] data_1, data_0; 5 | input select; 6 | 7 | assign mux_out = enable ? data_1 : data_0; 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/AOI_UDP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 16:18:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BA401B13-0897-4FA0-ACB5-3EA54C198D56} 5 | vti_cacheddtm:TX|13 Oct 2000 16:18:32 -0000 6 | vti_filesize:IR|1234 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/AOI_str.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Oct 2000 15:56:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E6855D5D-DA4F-4C3D-8C00-9447743FAC1E} 5 | vti_cacheddtm:TX|12 Oct 2000 15:56:54 -0000 6 | vti_filesize:IR|254 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/Add_rca_4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|10 Oct 2000 00:55:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2177ACE9-30E8-424A-B60E-C27DD90B34E4} 5 | vti_cacheddtm:TX|10 Oct 2000 00:55:44 -0000 6 | vti_filesize:IR|1326 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/Mux_2_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:50:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{83B9F9D4-208F-437E-9480-FC2518085A41} 5 | vti_cacheddtm:TX|12 Jun 2002 15:50:02 -0000 6 | vti_filesize:IR|259 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/Mux_4_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:30:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{64F736C4-0C58-4F21-90F7-11D251E8E9E1} 5 | vti_cacheddtm:TX|12 Jun 2002 16:30:16 -0000 6 | vti_filesize:IR|450 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/Mux_4_32_CA_if.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:28:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{01312767-5AFA-414A-8456-498706E1FEE4} 5 | vti_cacheddtm:TX|12 Jun 2002 16:28:34 -0000 6 | vti_filesize:IR|567 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/Mux_4_32_case.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:26:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1A6C6D01-1BF8-48A3-9B49-8064982CF129} 5 | vti_cacheddtm:TX|12 Jun 2002 16:26:56 -0000 6 | vti_filesize:IR|562 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/compare_2_str.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:20:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C51CBCBA-B081-4F21-A419-115A0CF18621} 5 | vti_cacheddtm:TX|28 Aug 2002 21:20:24 -0000 6 | vti_filesize:IR|421 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/compare_4_str.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Jan 2001 00:32:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4601FF38-0F7D-4342-8A16-72FD796EABB5} 5 | vti_cacheddtm:TX|11 Jan 2001 00:32:48 -0000 6 | vti_filesize:IR|1353 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/t_Add_full_ASIC.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|10 May 2002 20:36:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C7C4D4D8-2214-46A9-86C9-A1D3DE400F90} 5 | vti_cacheddtm:TX|10 May 2002 20:36:46 -0000 6 | vti_filesize:IR|966 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/t_Add_full_unit_delay.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|10 May 2002 21:11:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{8F51986B-4AEE-45F1-B278-4F33738D5B90} 5 | vti_cacheddtm:TX|10 May 2002 21:11:16 -0000 6 | vti_filesize:IR|876 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/t_Add_half.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Oct 2000 02:52:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D0E1148F-A54E-4D4D-BBCE-0B26A3D1B1BD} 5 | vti_cacheddtm:TX|08 Oct 2000 02:52:46 -0000 6 | vti_filesize:IR|461 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/t_Add_rca_4_Unit_Delay.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Oct 2000 17:30:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D287122C-AAF4-4BE3-8EE7-9AB4B7794487} 5 | vti_cacheddtm:TX|08 Oct 2000 17:30:32 -0000 6 | vti_filesize:IR|1226 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 4/_vti_cnf/test_hiZ.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Oct 2000 19:56:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{71961A7C-F111-40DE-97A0-42A8560BD08B} 5 | vti_cacheddtm:TX|12 Oct 2000 19:56:50 -0000 6 | vti_filesize:IR|694 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/ADDVB_Models_5.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/ADDVB_Models_5.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/AOI_5_CA0.v: -------------------------------------------------------------------------------- 1 | module AOI_5 _CA0 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5); 2 | // md ciletti 3 | input x_in1, x_in2, x_in3, x_in4, x_in5; 4 | output y_out; 5 | 6 | assign y_out = ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)); 7 | 8 | endmodule 9 | 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | module AOI_5 _CA1 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | // md ciletti 3 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 4 | output y_out; 5 | 6 | assign y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)) : 1'bz; 7 | 8 | endmodule 9 | 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | module AOI_5 _CA2 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | // md ciletti 3 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 4 | output y_out; 5 | 6 | wire y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)): 1'bz; 7 | 8 | endmodule 9 | 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/AOI_5_CA3.v: -------------------------------------------------------------------------------- 1 | module AOI_5 _CA2 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | // md ciletti 3 | input x_in1, x_in2, x_in3, x_in4, x_in5; 4 | output y_out; 5 | wire #1 y1 = x_in1 & x_in2; 6 | wire #1 y2 = x_in3 & x_in4; 7 | wire #1 y_out = ~(y1 | y2); 8 | endmodule 9 | 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/Latch_CA.v: -------------------------------------------------------------------------------- 1 | module Latch_CA (q_out, data_in, enable); 2 | output q_out; 3 | input data_in, enable; 4 | 5 | assign q_out = enable ? data_in : q_out; 6 | endmodule 7 | 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/Latch_Rbar_CA.v: -------------------------------------------------------------------------------- 1 | module Latch_Rbar_CA (q_out, data_in, enable, reset); 2 | output q_out; 3 | input data_in, enable, reset; 4 | 5 | assign q_out = !reset ? 0 : enable ? data_in : q_out; 6 | endmodule 7 | 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/Majority_4b.v: -------------------------------------------------------------------------------- 1 | module Majority_4b (Y, A, B, C, D); 2 | input A, B, C, D; 3 | output Y; 4 | reg Y; 5 | always @ (A or B or C or D) begin 6 | case ({A, B,C, D}) 7 | 7, 11, 13, 14, 15: Y = 1; 8 | default Y = 0; 9 | endcase 10 | end 11 | endmodule 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/AOI_5_CA0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:45:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1C700339-D335-49AC-8AF2-29F6E49695B0} 5 | vti_cacheddtm:TX|12 Jun 2002 15:45:08 -0000 6 | vti_filesize:IR|227 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:45:26 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{74A277E0-2283-41BB-A7DC-0F229F18A545} 5 | vti_cacheddtm:TX|12 Jun 2002 15:45:26 -0000 6 | vti_filesize:IR|260 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:44:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{79E46C17-3BE6-4533-8395-B6472CF940A6} 5 | vti_cacheddtm:TX|12 Jun 2002 15:44:54 -0000 6 | vti_filesize:IR|256 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/AOI_5_CA3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:53:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FCA3FD98-40E2-4AC0-9B36-21C7851680A1} 5 | vti_cacheddtm:TX|12 Jun 2002 15:53:52 -0000 6 | vti_filesize:IR|259 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Auto_LFSR_ALGO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:37:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1AB4E5D2-5A79-4726-809F-2CA65DC06BFE} 5 | vti_cacheddtm:TX|12 Jun 2002 16:37:50 -0000 6 | vti_filesize:IR|687 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Auto_LFSR_Param.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:56:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C65CED53-2D07-4F26-AB80-C91657BD4847} 5 | vti_cacheddtm:TX|12 Jun 2002 16:56:54 -0000 6 | vti_filesize:IR|563 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Auto_LFSR_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:36:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{386C357F-EA09-4103-9755-14540845B435} 5 | vti_cacheddtm:TX|12 Jun 2002 16:36:34 -0000 6 | vti_filesize:IR|842 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Hex_Keypad_Grayhill_072.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:16:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9DEC973E-3A86-4F13-A754-057B5EDB29CF} 5 | vti_cacheddtm:TX|13 Jun 2002 17:16:48 -0000 6 | vti_filesize:IR|2645 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Latch_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:08:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{8E9B9E41-56D0-4207-A018-D65DC2428238} 5 | vti_cacheddtm:TX|12 Jun 2002 16:08:38 -0000 6 | vti_filesize:IR|149 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Latch_Rbar_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:10:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{94739386-1EBB-4D2E-9EA7-8689DF93446A} 5 | vti_cacheddtm:TX|12 Jun 2002 16:10:24 -0000 6 | vti_filesize:IR|181 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Majority.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:56:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9023E326-CB4A-4F27-87BC-EDA8F15DF765} 5 | vti_cacheddtm:TX|12 Jun 2002 16:56:06 -0000 6 | vti_filesize:IR|395 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Majority_4b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:56:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7FFD6926-9EB5-427F-949B-9F941DED918D} 5 | vti_cacheddtm:TX|12 Jun 2002 16:56:18 -0000 6 | vti_filesize:IR|237 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Mux_4_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Jan 2001 16:16:36 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2672771E-BFAA-4AD2-A52E-57E307A63237} 5 | vti_cacheddtm:TX|26 Jan 2001 16:16:36 -0000 6 | vti_filesize:IR|435 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Mux_4_32_case.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Jan 2001 15:51:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1CF327FA-FE39-4BA4-B373-FFBF42279C2D} 5 | vti_cacheddtm:TX|26 Jan 2001 15:51:42 -0000 6 | vti_filesize:IR|557 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Mux_4_32_if.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Jan 2001 16:13:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D7CB443A-F90C-4C7C-9E3B-9710E8671E5E} 5 | vti_cacheddtm:TX|26 Jan 2001 16:13:28 -0000 6 | vti_filesize:IR|577 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Par_load_reg4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:10:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4EE4A210-C43A-4318-8881-C84E98D25067} 5 | vti_cacheddtm:TX|12 Jun 2002 17:10:16 -0000 6 | vti_filesize:IR|381 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Register_File.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:17:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{91FC6703-FEEE-4BD5-8DE7-F6B782B54C00} 5 | vti_cacheddtm:TX|12 Jun 2002 17:17:18 -0000 6 | vti_filesize:IR|561 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Row_Signal.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 23:56:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DE7DBAA9-584B-4DCE-BB4F-D718B1698C8E} 5 | vti_cacheddtm:TX|12 Jun 2002 23:56:16 -0000 6 | vti_filesize:IR|645 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Seven_Seg_Display.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:35:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{B46B4DEF-36E3-4126-A141-C63B15133CA8} 5 | vti_cacheddtm:TX|12 Jun 2002 16:35:24 -0000 6 | vti_filesize:IR|1036 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Shift_reg4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:09:36 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0278847E-26A2-478E-9A46-B9AEC28D4B97} 5 | vti_cacheddtm:TX|12 Jun 2002 17:09:36 -0000 6 | vti_filesize:IR|354 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Synchronizer.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 16:38:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E4220C67-5ED5-4D3A-9730-C95176D2864E} 5 | vti_cacheddtm:TX|13 Jun 2002 16:38:00 -0000 6 | vti_filesize:IR|405 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Universal_Shift_Reg.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:16:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3537FEE7-1C94-4F93-8B7D-BD878D33C680} 5 | vti_cacheddtm:TX|12 Jun 2002 17:16:28 -0000 6 | vti_filesize:IR|702 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Universal_Shift_Register.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 May 2002 15:14:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7AD71723-EEB2-4821-A474-B774830F1585} 5 | vti_cacheddtm:TX|25 May 2002 15:14:40 -0000 6 | vti_filesize:IR|1710 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/Up_Down_Implicit1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:05:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C16A435F-4B46-4D6E-A7BD-1ED3BBCFB57A} 5 | vti_cacheddtm:TX|12 Jun 2002 17:05:42 -0000 6 | vti_filesize:IR|450 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/add_4cycle.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:59:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EBBF4B00-F808-4EB3-BAB6-1CF2438D8F16} 5 | vti_cacheddtm:TX|12 Jun 2002 16:59:42 -0000 6 | vti_filesize:IR|489 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/adder_task.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:01:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{51B41754-9EBC-4674-A215-53E7AC54B752} 5 | vti_cacheddtm:TX|12 Jun 2002 17:01:52 -0000 6 | vti_filesize:IR|582 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/arithmetic_unit.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:04:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DAEAF75F-FE1A-4D8F-B019-981067483762} 5 | vti_cacheddtm:TX|12 Jun 2002 17:04:04 -0000 6 | vti_filesize:IR|616 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/asynch_df_behav.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:13:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0571E68E-09E1-476B-9775-6A29B7952229} 5 | vti_cacheddtm:TX|12 Jun 2002 16:13:06 -0000 6 | vti_filesize:IR|362 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/barrel_shifter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:11:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E06DFBB1-1FDE-45B2-929D-4CDDCD8BE35F} 5 | vti_cacheddtm:TX|12 Jun 2002 17:11:18 -0000 6 | vti_filesize:IR|420 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/comparator.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:25:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3BB725E7-9D68-43AD-9F93-F073DD6390C9} 5 | vti_cacheddtm:TX|12 Jun 2002 17:25:12 -0000 6 | vti_filesize:IR|582 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_2_CA0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:07:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9D9ECA24-96A7-49B3-9D0A-E510A403AF76} 5 | vti_cacheddtm:TX|12 Jun 2002 16:07:38 -0000 6 | vti_filesize:IR|410 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_2_CA1.txt: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:15:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{94C7A875-3080-45CD-932F-ECF2B768F115} 5 | vti_cacheddtm:TX|12 Jun 2002 16:15:12 -0000 6 | vti_filesize:IR|267 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_2_CA1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:15:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{26A55D06-A79A-4A01-926C-DD97FD8D61F5} 5 | vti_cacheddtm:TX|12 Jun 2002 16:15:54 -0000 6 | vti_filesize:IR|216 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_2_ROM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Jan 2001 02:35:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{54CCB450-1377-47B7-8A0A-BCAA0925D05D} 5 | vti_cacheddtm:TX|11 Jan 2001 02:35:50 -0000 6 | vti_filesize:IR|888 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_2_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:17:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D248634D-AD15-4833-BFB9-F75DF745B62D} 5 | vti_cacheddtm:TX|12 Jun 2002 16:17:42 -0000 6 | vti_filesize:IR|332 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_2_algo.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:25:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0CC7B4A5-D35F-4D2E-AC22-30AD30F5468C} 5 | vti_cacheddtm:TX|12 Jun 2002 16:25:52 -0000 6 | vti_filesize:IR|409 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/compare_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:16:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FCBBC994-4E40-4FB7-A560-46AF4A7EEBA5} 5 | vti_cacheddtm:TX|12 Jun 2002 16:16:50 -0000 6 | vti_filesize:IR|287 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/decoder.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:32:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{319D6324-A497-43E1-A821-BD843305AC44} 5 | vti_cacheddtm:TX|12 Jun 2002 16:32:34 -0000 6 | vti_filesize:IR|950 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/df_behav.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:12:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E8166E81-D076-4995-8517-878BA77B031B} 5 | vti_cacheddtm:TX|12 Jun 2002 16:12:10 -0000 6 | vti_filesize:IR|332 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/encoder.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:30:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{23A143DE-436E-49F0-9C57-B8FB2964B5E2} 5 | vti_cacheddtm:TX|12 Jun 2002 16:30:52 -0000 6 | vti_filesize:IR|960 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/find_first_one.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:59:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9002A556-3A52-4E06-9F7F-F657BF7494A8} 5 | vti_cacheddtm:TX|12 Jun 2002 16:59:00 -0000 6 | vti_filesize:IR|386 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/pipe_2stage.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Oct 2001 02:41:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E2EC5644-B3C7-489E-A727-C5AA2241BA44} 5 | vti_cacheddtm:TX|23 Oct 2001 02:41:48 -0000 6 | vti_filesize:IR|1860 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/priority.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:31:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{74807442-E9F7-422D-943E-A77B9D4087EC} 5 | vti_cacheddtm:TX|12 Jun 2002 16:31:56 -0000 6 | vti_filesize:IR|986 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/ring_counter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:06:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0F39FA69-F0B9-4C97-ACBC-13C41306AC33} 5 | vti_cacheddtm:TX|12 Jun 2002 17:06:48 -0000 6 | vti_filesize:IR|340 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/shift_reg_PA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:35:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DEA61FEB-3B8D-4D51-8341-611642A01A53} 5 | vti_cacheddtm:TX|28 Aug 2002 21:35:50 -0000 6 | vti_filesize:IR|373 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/shiftreg_PA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:19:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{683B0D78-64FC-4738-B18A-F54E630B2186} 5 | vti_cacheddtm:TX|12 Jun 2002 16:19:40 -0000 6 | vti_filesize:IR|308 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/shiftreg_PA_rev.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:21:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{18C542C4-7AAC-48D2-B6D5-979E48CEE2B4} 5 | vti_cacheddtm:TX|12 Jun 2002 16:21:18 -0000 6 | vti_filesize:IR|316 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/shiftreg_nb.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:23:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{8D09AA89-3BFB-4430-B0F8-E9E8245E5523} 5 | vti_cacheddtm:TX|12 Jun 2002 16:23:28 -0000 6 | vti_filesize:IR|376 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/synchro_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|27 Jul 2001 14:53:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2B50D9CC-8A26-4F2B-870A-82E6ACF66B7D} 5 | vti_cacheddtm:TX|27 Jul 2001 14:53:02 -0000 6 | vti_filesize:IR|398 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/t_AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 18:58:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{11D6882B-5383-4682-AAA7-AA55B7D5650B} 5 | vti_cacheddtm:TX|13 Oct 2000 18:58:42 -0000 6 | vti_filesize:IR|242 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/t_AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 18:10:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AE7FB2B1-91C7-41B4-8428-31BB3B496531} 5 | vti_cacheddtm:TX|13 Oct 2000 18:10:34 -0000 6 | vti_filesize:IR|238 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/t_Bin_Cnt_Part_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Dec 2001 16:36:30 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{37F19051-497F-47C3-BC4B-A61C80DC76D5} 5 | vti_cacheddtm:TX|13 Dec 2001 16:36:30 -0000 6 | vti_filesize:IR|426 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/t_Hex_Keypad_Grayhill_072.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:18:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D381B66A-7CAB-4EFE-AD43-F389FAF5E9CF} 5 | vti_cacheddtm:TX|13 Jun 2002 17:18:24 -0000 6 | vti_filesize:IR|2220 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/t_Latch_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 19:29:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{B76FF913-4FB0-419E-819D-D2DD14A85AB4} 5 | vti_cacheddtm:TX|13 Oct 2000 19:29:48 -0000 6 | vti_filesize:IR|458 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/t_Latch_Rbar_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 20:14:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7B55E26E-53BD-48A5-85FB-DE69E007D100} 5 | vti_cacheddtm:TX|13 Oct 2000 20:14:06 -0000 6 | vti_filesize:IR|619 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/tr_latch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:14:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9FA731ED-B354-4792-B734-9A46FBB9793A} 5 | vti_cacheddtm:TX|12 Jun 2002 16:14:04 -0000 6 | vti_filesize:IR|195 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/up_down_counter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:07:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CF78523A-C84F-4447-B928-D8EC9C7D6745} 5 | vti_cacheddtm:TX|12 Jun 2002 17:07:52 -0000 6 | vti_filesize:IR|502 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/_vti_cnf/word_aligner.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:02:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4A6A1F37-2521-4477-AA15-CA11D63D049B} 5 | vti_cacheddtm:TX|12 Jun 2002 17:02:22 -0000 6 | vti_filesize:IR|383 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/compare_2_CA1.txt: -------------------------------------------------------------------------------- 1 | module compare_2_CA1 (A_lt_B, A_gt_B, A_eq_B, A1, A0, B1, B0); 2 | input A1, A0, B1, B0; 3 | output A_lt_B, A_gt_B, A_eq_B; 4 | 5 | assign A_lt_B = ({A1,A0} < {B1,B0}); 6 | assign A_gt_B = ({A1,A0} > {B1,B0}); 7 | assign A_eq_B = ({A1,A0} == {B1,B0}); 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/compare_2_CA1.v: -------------------------------------------------------------------------------- 1 | module compare_2_CA1 (A_lt_B, A_gt_B, A_eq_B, A, B); 2 | input [1: 0] A, B; 3 | output A_lt_B, A_gt_B, A_eq_B; 4 | 5 | assign A_lt_B = (A < B); 6 | assign A_gt_B = (A > B); 7 | assign A_eq_B = (A == B); 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/compare_32_CA.v: -------------------------------------------------------------------------------- 1 | module compare_32_CA (A_gt_B, A_lt_B, A_eq_B, A, B); 2 | parameter word_size = 32; 3 | input [word_size-1: 0] A, B; 4 | output A_gt_B, A_lt_B, A_eq_B; 5 | 6 | assign A_gt_B = (A > B), // Note: list of multiple assignments 7 | A_lt_B = (A < B), 8 | A_eq_B = (A == B); 9 | endmodule 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/t_AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | module AOI_5_CA1 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 3 | output y_out; 4 | 5 | assign y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)) : 1'bz; 6 | 7 | endmodule 8 | 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/t_AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | module AOI_5_CA2 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 3 | output y_out; 4 | 5 | wire y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)) : 1'bz; 6 | 7 | endmodule 8 | 9 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 5/tr_latch.v: -------------------------------------------------------------------------------- 1 | module tr_latch (q_out, enable, data); 2 | output q_out; 3 | input enable, data; 4 | reg q_out; 5 | 6 | always @ (enable or data) 7 | begin 8 | if (enable) q_out = data; 9 | end 10 | endmodule 11 | 12 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/ADDVB_Models_6.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/ADDVB_Models_6.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/Uni_dir_bus.v.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/Uni_dir_bus.v.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Add_Accum_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:55:58 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F567E378-6F16-4862-9CCB-0A8AAB584A01} 5 | vti_cacheddtm:TX|12 Jun 2002 17:55:58 -0000 6 | vti_filesize:IR|373 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Add_Accum_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:30:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2956AC1D-7ABE-459C-A395-AB59D68E259F} 5 | vti_cacheddtm:TX|13 Jun 2002 17:30:46 -0000 6 | vti_filesize:IR|381 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Add_Accum_both.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 Nov 2001 13:44:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0C51FA48-D087-4BA7-984D-A8305A191105} 5 | vti_cacheddtm:TX|24 Nov 2001 13:44:38 -0000 6 | vti_filesize:IR|1393 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/BCD_to_Excess_3a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|05 Jul 2001 12:08:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E4C809B9-D38F-4B7E-A691-E549E7D10322} 5 | vti_cacheddtm:TX|05 Jul 2001 12:08:44 -0000 6 | vti_filesize:IR|1022 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/BCD_to_Excess_3b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:32:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0E5439AF-B55C-4841-98E7-6139101AACF3} 5 | vti_cacheddtm:TX|23 Nov 2001 16:32:00 -0000 6 | vti_filesize:IR|1737 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/BCD_to_Excess_3b_Post.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:55:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BE68C07F-2D31-47A7-8412-CB447D5D2062} 5 | vti_cacheddtm:TX|23 Nov 2001 16:55:02 -0000 6 | vti_filesize:IR|2175 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/BCD_to_Excess_3c.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:45:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DC3EBCB8-C5AE-4403-9FD6-D420CB95CF9D} 5 | vti_cacheddtm:TX|23 Nov 2001 16:45:56 -0000 6 | vti_filesize:IR|1728 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/BCD_to_Excess_3c_Post.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:55:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BF622CCE-E509-4A50-9280-7363DA1EC633} 5 | vti_cacheddtm:TX|23 Nov 2001 16:55:20 -0000 6 | vti_filesize:IR|1418 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Bi_dir_bus.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:39:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DAB1F628-2FBC-46F1-A33F-1E1C6BA87845} 5 | vti_cacheddtm:TX|12 Jun 2002 17:39:12 -0000 6 | vti_filesize:IR|460 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/D_reg4_a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:41:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0B09C11F-266A-4FB2-94FD-502A219B8798} 5 | vti_cacheddtm:TX|12 Jun 2002 17:41:02 -0000 6 | vti_filesize:IR|328 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Latched_Seven_Seg_Display.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:27:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F1C64FC7-C79D-4222-B200-DDECADEC41D3} 5 | vti_cacheddtm:TX|12 Jun 2002 17:27:32 -0000 6 | vti_filesize:IR|1499 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/NRZI.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Dec 2001 19:58:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{68196FE4-025E-448D-B7A4-83D0C37BB7BA} 5 | vti_cacheddtm:TX|08 Dec 2001 19:58:52 -0000 6 | vti_filesize:IR|1929 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/NRZ_2_Manchester_Mealy.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 17:39:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{5B9FFE9F-9AA9-400A-ABA2-843CF9CE9DAE} 5 | vti_cacheddtm:TX|23 Nov 2001 17:39:12 -0000 6 | vti_filesize:IR|1203 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/NRZ_2_Manchester_Mealy_Post.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|05 Jul 2001 20:40:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4D3EE315-2B6E-4155-93AF-4ECCB22B3D86} 5 | vti_cacheddtm:TX|05 Jul 2001 20:40:14 -0000 6 | vti_filesize:IR|1097 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/NRZ_2_Manchester_Moore.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 17:53:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F402068E-7379-46F7-AB6E-DB8304B98DF3} 5 | vti_cacheddtm:TX|23 Nov 2001 17:53:56 -0000 6 | vti_filesize:IR|1134 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/NRZ_2_Manchester_Moore_Post.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|05 Jul 2001 21:07:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FCF268BB-33C6-4004-A454-D0F3D8C6B9B8} 5 | vti_cacheddtm:TX|05 Jul 2001 21:07:00 -0000 6 | vti_filesize:IR|612 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Seq_Rec_3_1s.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Apr 2002 17:56:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{771013C5-5D93-4B32-B1A5-1D89B3AB1F62} 5 | vti_cacheddtm:TX|11 Apr 2002 17:56:22 -0000 6 | vti_filesize:IR|3556 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Seq_Rec_3_1s_Mealy.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:48:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{31F2A333-EF1D-479F-98CF-ED78F2E8F4EA} 5 | vti_cacheddtm:TX|12 Jun 2002 17:48:56 -0000 6 | vti_filesize:IR|2217 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Seq_Rec_3_1s_Moore.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:48:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BA880662-F6C5-4F8B-BB26-8E0A5FB8EB79} 5 | vti_cacheddtm:TX|12 Jun 2002 17:48:04 -0000 6 | vti_filesize:IR|2200 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Seq_Rec_3_1s_Shft_Reg.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 Nov 2001 00:53:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{80CB458E-579D-4988-8F38-5718B3E6E8FC} 5 | vti_cacheddtm:TX|24 Nov 2001 00:53:02 -0000 6 | vti_filesize:IR|1743 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Seq_Rec_Moore_imp.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|01 Dec 2001 01:27:36 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FDFD8DE6-B4BD-4CE7-8CDF-1610BE4373F9} 5 | vti_cacheddtm:TX|01 Dec 2001 01:27:36 -0000 6 | vti_filesize:IR|1124 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_Seq_Rec_Moore_imp.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|10 Dec 2001 22:30:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F27BB1C9-78EB-449E-924C-257B949CA59F} 5 | vti_cacheddtm:TX|10 Dec 2001 22:30:48 -0000 6 | vti_filesize:IR|851 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_IMP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jul 2001 18:44:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F59D56E7-91D4-43F5-AC75-10D110CCAFD1} 5 | vti_cacheddtm:TX|12 Jul 2001 18:44:12 -0000 6 | vti_filesize:IR|877 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_SD.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 May 2002 15:43:26 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3C1EAF21-581C-4F47-AEDA-B110A1916924} 5 | vti_cacheddtm:TX|25 May 2002 15:43:26 -0000 6 | vti_filesize:IR|762 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_SM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|22 May 2002 22:15:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A6D9471D-3276-4AF8-B942-723BD4A8DE12} 5 | vti_cacheddtm:TX|22 May 2002 22:15:24 -0000 6 | vti_filesize:IR|806 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 20:49:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{58614CA4-6781-4F92-BE6F-4CFD9F45A5D6} 5 | vti_cacheddtm:TX|17 May 2002 20:49:24 -0000 6 | vti_filesize:IR|576 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 20:49:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F5FE85AC-3AEC-4A46-8D20-B2E16B8BB77E} 5 | vti_cacheddtm:TX|17 May 2002 20:49:40 -0000 6 | vti_filesize:IR|746 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_c.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 20:50:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{117A898F-9A0B-442B-804C-8EDCC1AD0020} 5 | vti_cacheddtm:TX|17 May 2002 20:50:08 -0000 6 | vti_filesize:IR|609 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/Test_count_ones_d.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|22 May 2002 20:56:30 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C8664452-D512-464B-A927-B94BE4400398} 5 | vti_cacheddtm:TX|22 May 2002 20:56:30 -0000 6 | vti_filesize:IR|614 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/alu_with_z1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:29:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3B035481-A7CE-4934-B4B9-C340AA18AD8E} 5 | vti_cacheddtm:TX|12 Jun 2002 17:29:22 -0000 6 | vti_filesize:IR|553 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/badd_4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:29:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1645A700-A2F4-43A3-B47B-0044C5B365E8} 5 | vti_cacheddtm:TX|12 Jun 2002 17:29:50 -0000 6 | vti_filesize:IR|179 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/boole_opt.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:23:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{95B1F491-264E-40B0-94ED-4498E1DF904A} 5 | vti_cacheddtm:TX|12 Jun 2002 17:23:42 -0000 6 | vti_filesize:IR|345 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_IMP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jul 2001 19:31:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{122ACACF-ECB3-43E4-B75B-FE2221A94E8A} 5 | vti_cacheddtm:TX|12 Jul 2001 19:31:16 -0000 6 | vti_filesize:IR|971 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_SD.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 May 2002 15:41:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{6949B223-4ADC-4F3E-A24F-9C780B70F185} 5 | vti_cacheddtm:TX|25 May 2002 15:41:34 -0000 6 | vti_filesize:IR|1389 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_SM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:25:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4E877A84-E6E7-41D0-8C5F-76D65ABDD9BB} 5 | vti_cacheddtm:TX|12 Jun 2002 18:25:42 -0000 6 | vti_filesize:IR|2801 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 21:26:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7D8610FC-4704-4BE6-9A86-9A85883096C6} 5 | vti_cacheddtm:TX|17 May 2002 21:26:10 -0000 6 | vti_filesize:IR|658 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 21:55:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{82668284-03E2-4390-B0C6-7053CFA1DDF7} 5 | vti_cacheddtm:TX|17 May 2002 21:55:00 -0000 6 | vti_filesize:IR|2840 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_b0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:17:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{45D7A815-8CD8-475E-A075-4A1F9D75D542} 5 | vti_cacheddtm:TX|12 Jun 2002 18:17:52 -0000 6 | vti_filesize:IR|986 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_b1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:18:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{69AD51D2-AF05-40BD-9D26-0BEE18DE8B9A} 5 | vti_cacheddtm:TX|12 Jun 2002 18:18:32 -0000 6 | vti_filesize:IR|1056 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_b2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:19:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7E68130B-5047-48FF-B74D-E7B47DB912DE} 5 | vti_cacheddtm:TX|12 Jun 2002 18:19:32 -0000 6 | vti_filesize:IR|767 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_c.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 16:52:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EB6636EC-E8F8-4C71-AA61-9A92F07CE1AF} 5 | vti_cacheddtm:TX|17 May 2002 16:52:54 -0000 6 | vti_filesize:IR|634 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/count_ones_d.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|22 May 2002 21:05:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A217587C-627C-464A-B785-858433C325C5} 5 | vti_cacheddtm:TX|22 May 2002 21:05:48 -0000 6 | vti_filesize:IR|865 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/expression_sub.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:59:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DC2D839A-92AA-4F8A-A2CB-F43E9530E5CD} 5 | vti_cacheddtm:TX|12 Jun 2002 17:59:42 -0000 6 | vti_filesize:IR|485 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/expression_sub_nb.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:13:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7D34D1C8-BCC3-44B9-AABA-344537AD4B91} 5 | vti_cacheddtm:TX|12 Jun 2002 18:13:52 -0000 6 | vti_filesize:IR|509 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/for_and_loop_comb.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:15:30 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2AA6BA48-341D-403C-BE89-73B25DE3418B} 5 | vti_cacheddtm:TX|12 Jun 2002 18:15:30 -0000 6 | vti_filesize:IR|284 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/latch_if1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:34:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3E549DC4-1CA2-4069-834E-EC212D52A530} 5 | vti_cacheddtm:TX|12 Jun 2002 17:34:18 -0000 6 | vti_filesize:IR|296 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/latch_if2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:37:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{933EEBC7-13DF-42EA-B352-CCE6E184F461} 5 | vti_cacheddtm:TX|12 Jun 2002 17:37:14 -0000 6 | vti_filesize:IR|285 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/multiple_reg_assign.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:59:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{5CF90A6B-B58B-4A29-9730-9D0D4E0281F4} 5 | vti_cacheddtm:TX|12 Jun 2002 17:59:08 -0000 6 | vti_filesize:IR|454 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/mux_4pri.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:26:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{73DB77DB-9386-4A91-9918-4E7CCA590F45} 5 | vti_cacheddtm:TX|12 Jun 2002 17:26:08 -0000 6 | vti_filesize:IR|357 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/mux_latch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:33:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2FD0A98B-107A-495D-9A0A-7095209C1EB1} 5 | vti_cacheddtm:TX|12 Jun 2002 17:33:38 -0000 6 | vti_filesize:IR|291 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/mux_logic.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:29:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{01C41CA6-8897-424C-8C7C-8E2D69BC3F41} 5 | vti_cacheddtm:TX|13 Jun 2002 17:29:52 -0000 6 | vti_filesize:IR|226 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/mux_reg.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:52:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D87286F5-BAB2-469F-842E-58280EF58089} 5 | vti_cacheddtm:TX|12 Jun 2002 17:52:04 -0000 6 | vti_filesize:IR|351 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/operator_group.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:58:26 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A66C368B-EC13-43DF-9401-9840DEE6AD6E} 5 | vti_cacheddtm:TX|12 Jun 2002 17:58:26 -0000 6 | vti_filesize:IR|198 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/or4_behav.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:31:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AC21F603-DE29-4D98-A670-08A9D1C366D3} 5 | vti_cacheddtm:TX|12 Jun 2002 17:31:20 -0000 6 | vti_filesize:IR|379 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/or4_behav_latch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:32:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C8FD8CD3-1C3C-420D-B852-EC8F33C9A1F8} 5 | vti_cacheddtm:TX|12 Jun 2002 17:32:04 -0000 6 | vti_filesize:IR|405 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/or_nand.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:24:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{882B7905-0F22-48A5-999C-A2A1B4B2DCC6} 5 | vti_cacheddtm:TX|12 Jun 2002 17:24:12 -0000 6 | vti_filesize:IR|156 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/res_share.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:30:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DE7E7D2F-7678-4421-BD31-0965818D61EE} 5 | vti_cacheddtm:TX|12 Jun 2002 17:30:24 -0000 6 | vti_filesize:IR|203 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/ripple_counter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:53:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D4332752-F3AC-4A44-9806-CDF5FCEE85EA} 5 | vti_cacheddtm:TX|12 Jun 2002 17:53:48 -0000 6 | vti_filesize:IR|832 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/shifter_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:54:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FFEB12DC-8B98-406E-BC10-9AC2E193C208} 5 | vti_cacheddtm:TX|12 Jun 2002 17:54:48 -0000 6 | vti_filesize:IR|593 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/shifter_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:55:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{6E244483-0A45-4E65-AFCD-4E242D36234C} 5 | vti_cacheddtm:TX|12 Jun 2002 17:55:22 -0000 6 | vti_filesize:IR|608 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/swap_synch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:40:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F3733F0D-C888-48C2-A21F-AC2D264DE709} 5 | vti_cacheddtm:TX|12 Jun 2002 17:40:20 -0000 6 | vti_filesize:IR|446 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/t_BCD_Excess_3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:54:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{5E8628D8-DC2B-4D12-8DD6-2CD8116962D1} 5 | vti_cacheddtm:TX|23 Nov 2001 16:54:40 -0000 6 | vti_filesize:IR|491 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/_vti_cnf/test_NRZ_2_Manchester_Moore.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 18:27:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1F1E9661-C9F1-41F8-8D8E-E309F3DA2144} 5 | vti_cacheddtm:TX|23 Nov 2001 18:27:46 -0000 6 | vti_filesize:IR|433 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/badd_4.v: -------------------------------------------------------------------------------- 1 | module badd_4 (Sum, C_out, A, B, C_in); 2 | output [3: 0] Sum; 3 | output C_out; 4 | input [3: 0] A, B; 5 | input C_in; 6 | 7 | assign {C_out, Sum} = A + B + C_in; 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/latch_if2.v: -------------------------------------------------------------------------------- 1 | module latch_if2 (data_out, data_in, latch_enable); 2 | output [3: 0] data_out; 3 | input [3: 0] data_in; 4 | input latch_enable; 5 | reg [3: 0] data_out; 6 | 7 | always @ (latch_enable or data_in) 8 | if (latch_enable) data_out = data_in; // Incompletely specified 9 | endmodule 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/mux_logic.v: -------------------------------------------------------------------------------- 1 | module mux_logic (y, select, sig_G, sig_max, sig_a, sig_b); 2 | output y; 3 | input select, sig_G, sig_max, sig_a, sig_b; 4 | 5 | assign y = (select == 1) || (sig_G ==1) || (sig_max == 0) ? sig_a : sig_b; 6 | 7 | endmodule 8 | 9 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/operator_group.v: -------------------------------------------------------------------------------- 1 | module operator_group (sum1, sum2, a, b, c, d); 2 | output [4: 0] sum1, sum2; 3 | input [3: 0] a, b, c, d; 4 | 5 | 6 | assign sum1 = a + b + c + d; 7 | assign sum2 = (a + b) + (c + d); 8 | 9 | endmodule 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/or_nand.v: -------------------------------------------------------------------------------- 1 | module or_nand (y, enable, x1, x2, x3, x4); 2 | output y; 3 | input enable, x1, x2, x3, x4; 4 | 5 | assign y = ~(enable & (x1 | x2) & (x3 | x4)); 6 | endmodule 7 | 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 6/res_share.v: -------------------------------------------------------------------------------- 1 | module res_share (y_out, sel, data_a, data_b, accum); 2 | output [4: 0] y_out; 3 | input [3: 0] data_a, data_b, accum; 4 | input sel; 5 | 6 | assign y_out = data_a + (sel ? accum : data_b); 7 | endmodule 8 | 9 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/ADDVB_Models_7.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/ADDVB_Models_7.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/Clock_Unit.v: -------------------------------------------------------------------------------- 1 | module Clock_Unit (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 10; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/Gap_Finder.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/Gap_Finder.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/Bin_Cnt_Part_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Dec 2001 16:41:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7CC9F199-3AD6-4478-B60B-5B8BC5822850} 5 | vti_cacheddtm:TX|13 Dec 2001 16:41:06 -0000 6 | vti_filesize:IR|861 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/Bin_Cnt_Part_RTL_by_3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Dec 2001 16:43:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{05161259-62E2-46F4-9711-7ED6237F7FC1} 5 | vti_cacheddtm:TX|13 Dec 2001 16:43:16 -0000 6 | vti_filesize:IR|1242 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/RISC_SPM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|16 Jul 2001 18:46:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{980A4893-B92C-420D-886C-E9D7B862C22F} 5 | vti_cacheddtm:TX|16 Jul 2001 18:46:12 -0000 6 | vti_filesize:IR|14013 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/UART_xmtr_Arch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2001 21:16:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7D7A54DB-948B-41CE-8A7F-95D74B9C8D13} 5 | vti_cacheddtm:TX|13 Jun 2001 21:16:18 -0000 6 | vti_filesize:IR|4532 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/t_Bin_Cnt_Part_RTL_by_3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Dec 2001 16:52:26 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A2F0E00D-8FA5-49FD-B2CF-8553AEDE67CF} 5 | vti_cacheddtm:TX|13 Dec 2001 16:52:26 -0000 6 | vti_filesize:IR|472 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/test_RISC_SPM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|14 Jun 2001 22:16:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4EFEAF14-7B7F-4228-A06A-967B82E914D9} 5 | vti_cacheddtm:TX|14 Jun 2001 22:16:42 -0000 6 | vti_filesize:IR|3221 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/uart8_rcvr.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|19 Jul 2001 19:08:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EA195BA9-9C91-4BAA-A55A-684D15EA7D4F} 5 | vti_cacheddtm:TX|19 Jul 2001 19:08:12 -0000 6 | vti_filesize:IR|4791 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 7/_vti_cnf/uart8_rcvr_partition.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|19 Jul 2001 19:26:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{B1D670F2-237D-4DCB-8533-B37A9641402B} 5 | vti_cacheddtm:TX|19 Jul 2001 19:26:02 -0000 6 | vti_filesize:IR|5727 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/ADDVB_Models_8.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/ADDVB_Models_8.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/BCD_to_Excess_3_ROM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|31 May 2002 17:06:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{779AD3A2-6BC2-4AE0-97B6-FD3EEAA9539D} 5 | vti_cacheddtm:TX|31 May 2002 17:06:34 -0000 6 | vti_filesize:IR|1778 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/Counter8_prog.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:15:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1F5A7814-F805-4AAA-ABA5-EFA58F7261E4} 5 | vti_cacheddtm:TX|12 Jun 2002 19:15:48 -0000 6 | vti_filesize:IR|1304 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/FIFO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 00:56:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{02B126E0-1CF0-4891-BC9D-57E1FBD18AE4} 5 | vti_cacheddtm:TX|13 Jun 2002 00:56:06 -0000 6 | vti_filesize:IR|3482 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/PLA_array.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:11:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{359B79BA-4F57-4BA8-A0D3-65AA374E0E7A} 5 | vti_cacheddtm:TX|12 Jun 2002 19:11:20 -0000 6 | vti_filesize:IR|438 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/PLA_plane.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:12:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D2BFFAB7-B213-42B4-95C6-2958E0E9D330} 5 | vti_cacheddtm:TX|12 Jun 2002 19:12:02 -0000 6 | vti_filesize:IR|563 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/RAM_2048_8.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:08:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E6D57C61-C7BB-4A8F-A3E7-76BC8A4BEC57} 5 | vti_cacheddtm:TX|12 Jun 2002 19:08:42 -0000 6 | vti_filesize:IR|9863 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/RAM_static.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Apr 2002 03:53:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0996E774-8D4E-4BA7-BD05-D27036195F12} 5 | vti_cacheddtm:TX|23 Apr 2002 03:53:38 -0000 6 | vti_filesize:IR|727 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/RAM_static_BD.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2001 17:13:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CA34AFE5-501B-426D-AF32-319130A86AE3} 5 | vti_cacheddtm:TX|17 May 2001 17:13:02 -0000 6 | vti_filesize:IR|1765 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/Row_Signal.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 23:56:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{231BC882-B043-4D23-8C6F-CA67729CC2C3} 5 | vti_cacheddtm:TX|12 Jun 2002 23:56:16 -0000 6 | vti_filesize:IR|645 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/SRAM_with_Con.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 May 2001 16:13:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{133E62DC-D79D-4646-BFBC-A84E4321F3A0} 5 | vti_cacheddtm:TX|24 May 2001 16:13:28 -0000 6 | vti_filesize:IR|10871 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/t_keypad_FIFO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:28:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F0031315-D554-49BB-B673-EAB19058BDB0} 5 | vti_cacheddtm:TX|13 Jun 2002 17:28:12 -0000 6 | vti_filesize:IR|3162 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 8/_vti_cnf/top_keypad_FIFO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:13:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D3D07468-EFC3-428D-92F6-29351C06C968} 5 | vti_cacheddtm:TX|13 Jun 2002 17:13:40 -0000 6 | vti_filesize:IR|1761 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/ADDVB_Models_9.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/ADDVB_Models_9.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Bubble Sorter/_vti_cnf/Bubble_sort.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|09 Aug 2003 18:03:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A4844525-48B0-418D-B4A0-83243E4BD48D} 5 | vti_cacheddtm:TX|09 Aug 2003 18:03:18 -0000 6 | vti_filesize:IR|3193 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/FIR_Gaussian.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 Oct 2001 22:57:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{091FB715-7356-4485-B7C1-F47D2E0BFC89} 5 | vti_cacheddtm:TX|25 Oct 2001 22:57:52 -0000 6 | vti_filesize:IR|1082 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/IIR_Filter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 Oct 2001 22:20:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DAB5212C-9834-4709-8E8E-A10E6BB1D9FD} 5 | vti_cacheddtm:TX|25 Oct 2001 22:20:44 -0000 6 | vti_filesize:IR|2222 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/Integrator_Seq.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|29 Nov 2001 22:35:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{ADE152C5-491B-4DAB-86B3-3687E3342A19} 5 | vti_cacheddtm:TX|29 Nov 2001 22:35:40 -0000 6 | vti_filesize:IR|945 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/decimator_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|15 Aug 2001 14:31:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F0777245-3149-4656-A8F0-B6683F434FC7} 5 | vti_cacheddtm:TX|15 Aug 2001 14:31:56 -0000 6 | vti_filesize:IR|442 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/decimator_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|15 Aug 2001 14:48:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{50E2B1AF-BB94-4309-BCDB-8E4025B3EA14} 5 | vti_cacheddtm:TX|15 Aug 2001 14:48:34 -0000 6 | vti_filesize:IR|447 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/decimator_3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Oct 2001 10:13:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FDCEABF4-7416-489A-96DD-9D529EAAF46D} 5 | vti_cacheddtm:TX|11 Oct 2001 10:13:50 -0000 6 | vti_filesize:IR|1063 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/integrator_par.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Oct 2001 15:00:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{88944D70-8A4F-4248-86D4-34406E16C7AA} 5 | vti_cacheddtm:TX|11 Oct 2001 15:00:32 -0000 6 | vti_filesize:IR|371 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/t_Integrator_Seq.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|29 Nov 2001 22:35:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A40C0FD1-82C4-4197-AA0D-014C99C4B598} 5 | vti_cacheddtm:TX|29 Nov 2001 22:35:56 -0000 6 | vti_filesize:IR|899 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/t_decimator_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|30 Nov 2001 03:01:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AF5A7DEB-D3D8-4C3D-A3BB-574DCB4969ED} 5 | vti_cacheddtm:TX|30 Nov 2001 03:01:46 -0000 6 | vti_filesize:IR|893 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/t_decimator_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|30 Nov 2001 03:08:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{47819D57-C4F1-4610-8F8F-F751A84FD232} 5 | vti_cacheddtm:TX|30 Nov 2001 03:08:14 -0000 6 | vti_filesize:IR|895 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/t_decimator_3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Oct 2001 10:58:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D8D91897-0D0C-47E5-9903-F582665170AB} 5 | vti_cacheddtm:TX|11 Oct 2001 10:58:44 -0000 6 | vti_filesize:IR|790 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/t_integrator_par.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Oct 2001 15:03:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2209092D-FC77-4E8B-A8B6-6F675B17E0E0} 5 | vti_cacheddtm:TX|11 Oct 2001 15:03:40 -0000 6 | vti_filesize:IR|759 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/test_FIR_Gaussian.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Oct 2001 11:34:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{48E08E0A-82B7-4B63-B25A-1F031705D25C} 5 | vti_cacheddtm:TX|26 Oct 2001 11:34:46 -0000 6 | vti_filesize:IR|1152 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/DSP/_vti_cnf/test_IIR.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 Oct 2001 22:22:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{38406A39-B3A7-44F7-9849-D6A3C87A6702} 5 | vti_cacheddtm:TX|25 Oct 2001 22:22:10 -0000 6 | vti_filesize:IR|1605 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/Circular_Buffer_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|09 Aug 2003 18:11:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{51766B9A-E326-4B0B-94EE-99DD000603D1} 5 | vti_cacheddtm:TX|09 Aug 2003 18:11:50 -0000 6 | vti_filesize:IR|737 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/Circular_Buffer_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|09 Aug 2003 18:13:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7C91A641-9E32-4F78-B812-082248688910} 5 | vti_cacheddtm:TX|09 Aug 2003 18:13:22 -0000 6 | vti_filesize:IR|964 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/FIFO_Buffer.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 May 2002 02:45:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A3DFFD96-0920-4392-839F-2A38BC424AAB} 5 | vti_cacheddtm:TX|13 May 2002 02:45:52 -0000 6 | vti_filesize:IR|2719 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/Ser_Par_Conv_32.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 May 2002 00:07:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{24A6213C-54B2-4195-AC2F-C41FA1A3B5F9} 5 | vti_cacheddtm:TX|12 May 2002 00:07:20 -0000 6 | vti_filesize:IR|1077 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/Ser_Par_Conv_8.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Dec 2001 03:45:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0EE6313F-F512-42C4-87BC-9AFD9599AC66} 5 | vti_cacheddtm:TX|11 Dec 2001 03:45:28 -0000 6 | vti_filesize:IR|1055 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/t_Circular_Buffers.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Aug 2001 19:49:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BC7E4162-A75E-4479-BEFA-8E616B253FD1} 5 | vti_cacheddtm:TX|13 Aug 2001 19:49:46 -0000 6 | vti_filesize:IR|710 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/t_FIFO_Buffer.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 May 2002 18:17:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{92F2F2D4-69B5-4913-80B8-7383FBB459D8} 5 | vti_cacheddtm:TX|12 May 2002 18:17:40 -0000 6 | vti_filesize:IR|1798 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/t_FIFO_Clock_Domain_Synch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 May 2002 02:53:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{08180CF7-EC68-44D9-88C3-203463E3FD66} 5 | vti_cacheddtm:TX|13 May 2002 02:53:24 -0000 6 | vti_filesize:IR|2660 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/t_Ser_Par_Conv_32.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|02 Dec 2001 17:57:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EDC4378C-1105-4FE2-80EC-EB2F6EAC45DC} 5 | vti_cacheddtm:TX|02 Dec 2001 17:57:22 -0000 6 | vti_filesize:IR|453 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/t_Ser_Par_Conv_8.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Dec 2001 00:54:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{10E6439E-8513-4046-AD3C-255E2E8A9D4D} 5 | vti_cacheddtm:TX|11 Dec 2001 00:54:34 -0000 6 | vti_filesize:IR|451 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/t_write_synch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 May 2002 20:31:58 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{97BC8BAF-DD7A-4E70-98AE-B6FA47764078} 5 | vti_cacheddtm:TX|11 May 2002 20:31:58 -0000 6 | vti_filesize:IR|604 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pipeline and FIFO/_vti_cnf/write_synch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 May 2002 15:11:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{66BE1BFA-8D2C-467C-A0AE-22BFA6A31D57} 5 | vti_cacheddtm:TX|11 May 2002 15:11:14 -0000 6 | vti_filesize:IR|421 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/Image_Converter_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|04 Oct 2001 20:37:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CDAF0C2B-7542-4F8A-A7C8-18F3A3F89851} 5 | vti_cacheddtm:TX|04 Oct 2001 20:37:32 -0000 6 | vti_filesize:IR|7633 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/Image_Converter_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|20 May 2002 15:33:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AA6D0FB2-0021-4FC2-833C-C2B59D208D16} 5 | vti_cacheddtm:TX|20 May 2002 15:33:08 -0000 6 | vti_filesize:IR|7783 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/Image_Converter_Baseline.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|03 Oct 2001 21:14:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D4299310-DE6D-4B0E-BC5C-F7492EDF3BBB} 5 | vti_cacheddtm:TX|03 Oct 2001 21:14:56 -0000 6 | vti_filesize:IR|6305 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/Image_converter_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|20 May 2002 13:15:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E174457C-A40F-4FE7-AE3E-9FD43447C140} 5 | vti_cacheddtm:TX|20 May 2002 13:15:44 -0000 6 | vti_filesize:IR|17457 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/t_Image_Converter_0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|04 Oct 2001 20:35:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{509B5E2B-36D1-4916-A86A-DC97B6E7DBE1} 5 | vti_cacheddtm:TX|04 Oct 2001 20:35:14 -0000 6 | vti_filesize:IR|5014 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/t_Image_Converter_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|20 May 2002 14:55:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4BDFC7DF-6CE9-4BCE-B246-E75FCEA00851} 5 | vti_cacheddtm:TX|20 May 2002 14:55:14 -0000 6 | vti_filesize:IR|5625 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/t_Image_Converter_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|03 Oct 2001 22:42:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CB72F92D-9B21-4CF8-8CA4-5F47645E165B} 5 | vti_cacheddtm:TX|03 Oct 2001 22:42:42 -0000 6 | vti_filesize:IR|5625 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Chapter 9/Pixel Converter/_vti_cnf/t_Image_Converter_Baseline.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|03 Oct 2001 21:00:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{13ABC6DC-EDB2-4950-9786-72EA45D3DF77} 5 | vti_cacheddtm:TX|03 Oct 2001 21:00:10 -0000 6 | vti_filesize:IR|5027 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Clock generator/Clock_Unit.v: -------------------------------------------------------------------------------- 1 | module Clock_Unit (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 10; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Clock generator/clock.v: -------------------------------------------------------------------------------- 1 | module clock_gen (clock); 2 | parameter Half_cycle = 50; 3 | output clock; 4 | reg clock; 5 | 6 | initial 7 | clock = 0; 8 | 9 | always 10 | begin 11 | # Half_cycle clock = ~ clock; 12 | end 13 | endmodule 14 | 15 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Clock generator/clock_gen.v: -------------------------------------------------------------------------------- 1 | module Clock_Gen (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 5; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/FAQs.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/FAQs.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 10/ADDVB_Models_10.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 10/ADDVB_Models_10.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/ADDVB_Models_11.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/ADDVB_Models_11.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/BR_Cell.v: -------------------------------------------------------------------------------- 1 | module Bypass_Register(scan_out, scan_in, shiftDR, clockDR); 2 | output scan_out; 3 | input scan_in, shiftDR, clockDR; 4 | reg scan_out; 5 | 6 | always @ (posedge clockDR) scan_out <= scan_in & shiftDR; 7 | 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/ASIC_with_TAP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Mar 2002 15:41:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{077B22A1-99EE-4530-ADC7-38320116D84E} 5 | vti_cacheddtm:TX|08 Mar 2002 15:41:50 -0000 6 | vti_filesize:IR|2844 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/BR_Cell.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|31 Jan 2002 20:48:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0C1D562D-85CA-4666-A239-A2A9062204DE} 5 | vti_cacheddtm:TX|31 Jan 2002 20:48:08 -0000 6 | vti_filesize:IR|220 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/BSC_Cell.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 Jan 2002 23:10:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F004097B-7235-4868-8697-A38ADB39F0AB} 5 | vti_cacheddtm:TX|24 Jan 2002 23:10:34 -0000 6 | vti_filesize:IR|432 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/IR_Cell.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|21 Jan 2002 13:59:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AB424C10-28CC-44C3-BA14-FC4FBC6FEAFF} 5 | vti_cacheddtm:TX|21 Jan 2002 13:59:20 -0000 6 | vti_filesize:IR|510 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/TAP_FSM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|07 Feb 2002 22:28:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F959D017-6C69-4154-BFEB-91073AF5FA3B} 5 | vti_cacheddtm:TX|07 Feb 2002 22:28:42 -0000 6 | vti_filesize:IR|1906 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/TDI_Generator.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Feb 2002 03:43:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EFD3C16A-CB64-428C-BCEE-4A4107F22B11} 5 | vti_cacheddtm:TX|08 Feb 2002 03:43:50 -0000 6 | vti_filesize:IR|509 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/JTAG/_vti_cnf/TDO_Monitor.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Feb 2002 03:43:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E0BA2CB5-5A9E-4AAD-83A3-227D9D1BD552} 5 | vti_cacheddtm:TX|08 Feb 2002 03:43:20 -0000 6 | vti_filesize:IR|963 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 11/_vti_cnf/Latch_Races.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|01 Jan 2002 17:36:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2E94D1AA-33CF-46DC-8D1D-92D320919DA5} 5 | vti_cacheddtm:TX|01 Jan 2002 17:36:22 -0000 6 | vti_filesize:IR|1086 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/ADDVB_Models_4.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/ADDVB_Models_4.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/AOI_str.v: -------------------------------------------------------------------------------- 1 | module AOI_str (y, x_in1, x_in2, x_in3, x_in4, x_in5); 2 | output y; 3 | input x_in1, x_in2, x_in3, x_in4, x_in5; 4 | 5 | wire y1, y2; // Internal wires 6 | 7 | nor (y_out, y1, y2); 8 | and (y1, x_in1, x_in2); 9 | and (y2, x_in3, x_in4, x_in5); 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/Mux_2_32_CA.v: -------------------------------------------------------------------------------- 1 | module Mux_2_32_CA (mux_out, data_1, data_0, select); 2 | parameter word_size = 32; 3 | output [word_size -1: 0] mux_out; 4 | input [word_size -1: 0] data_1, data_0; 5 | input select; 6 | 7 | assign mux_out = enable ? data_1 : data_0; 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/AOI_UDP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 16:18:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BA401B13-0897-4FA0-ACB5-3EA54C198D56} 5 | vti_cacheddtm:TX|13 Oct 2000 16:18:32 -0000 6 | vti_filesize:IR|1234 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/AOI_str.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Oct 2000 15:56:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E6855D5D-DA4F-4C3D-8C00-9447743FAC1E} 5 | vti_cacheddtm:TX|12 Oct 2000 15:56:54 -0000 6 | vti_filesize:IR|254 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/Add_rca_4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|10 Oct 2000 00:55:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2177ACE9-30E8-424A-B60E-C27DD90B34E4} 5 | vti_cacheddtm:TX|10 Oct 2000 00:55:44 -0000 6 | vti_filesize:IR|1326 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/Mux_2_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:50:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{83B9F9D4-208F-437E-9480-FC2518085A41} 5 | vti_cacheddtm:TX|12 Jun 2002 15:50:02 -0000 6 | vti_filesize:IR|259 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/Mux_4_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:30:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{64F736C4-0C58-4F21-90F7-11D251E8E9E1} 5 | vti_cacheddtm:TX|12 Jun 2002 16:30:16 -0000 6 | vti_filesize:IR|450 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/Mux_4_32_CA_if.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:28:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{01312767-5AFA-414A-8456-498706E1FEE4} 5 | vti_cacheddtm:TX|12 Jun 2002 16:28:34 -0000 6 | vti_filesize:IR|567 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/Mux_4_32_case.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:26:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1A6C6D01-1BF8-48A3-9B49-8064982CF129} 5 | vti_cacheddtm:TX|12 Jun 2002 16:26:56 -0000 6 | vti_filesize:IR|562 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/compare_2_str.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:20:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C51CBCBA-B081-4F21-A419-115A0CF18621} 5 | vti_cacheddtm:TX|28 Aug 2002 21:20:24 -0000 6 | vti_filesize:IR|421 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/compare_4_str.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Jan 2001 00:32:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4601FF38-0F7D-4342-8A16-72FD796EABB5} 5 | vti_cacheddtm:TX|11 Jan 2001 00:32:48 -0000 6 | vti_filesize:IR|1353 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/t_Add_full_ASIC.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|10 May 2002 20:36:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C7C4D4D8-2214-46A9-86C9-A1D3DE400F90} 5 | vti_cacheddtm:TX|10 May 2002 20:36:46 -0000 6 | vti_filesize:IR|966 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/t_Add_half.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Oct 2000 02:52:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D0E1148F-A54E-4D4D-BBCE-0B26A3D1B1BD} 5 | vti_cacheddtm:TX|08 Oct 2000 02:52:46 -0000 6 | vti_filesize:IR|461 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 4/_vti_cnf/test_hiZ.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Oct 2000 19:56:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{71961A7C-F111-40DE-97A0-42A8560BD08B} 5 | vti_cacheddtm:TX|12 Oct 2000 19:56:50 -0000 6 | vti_filesize:IR|694 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/ADDVB_Models_5.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/ADDVB_Models_5.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/AOI_5_CA0.v: -------------------------------------------------------------------------------- 1 | module AOI_5 _CA0 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5); 2 | // md ciletti 3 | input x_in1, x_in2, x_in3, x_in4, x_in5; 4 | output y_out; 5 | 6 | assign y_out = ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)); 7 | 8 | endmodule 9 | 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | module AOI_5 _CA2 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | // md ciletti 3 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 4 | output y_out; 5 | 6 | wire y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)): 1'bz; 7 | 8 | endmodule 9 | 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/Latch_CA.v: -------------------------------------------------------------------------------- 1 | module Latch_CA (q_out, data_in, enable); 2 | output q_out; 3 | input data_in, enable; 4 | 5 | assign q_out = enable ? data_in : q_out; 6 | endmodule 7 | 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/Latch_Rbar_CA.v: -------------------------------------------------------------------------------- 1 | module Latch_Rbar_CA (q_out, data_in, enable, reset); 2 | output q_out; 3 | input data_in, enable, reset; 4 | 5 | assign q_out = !reset ? 0 : enable ? data_in : q_out; 6 | endmodule 7 | 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/Majority_4b.v: -------------------------------------------------------------------------------- 1 | module Majority_4b (Y, A, B, C, D); 2 | input A, B, C, D; 3 | output Y; 4 | reg Y; 5 | always @ (A or B or C or D) begin 6 | case ({A, B,C, D}) 7 | 7, 11, 13, 14, 15: Y = 1; 8 | default Y = 0; 9 | endcase 10 | end 11 | endmodule 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/AOI_5_CA0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:45:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1C700339-D335-49AC-8AF2-29F6E49695B0} 5 | vti_cacheddtm:TX|12 Jun 2002 15:45:08 -0000 6 | vti_filesize:IR|227 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:45:26 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{74A277E0-2283-41BB-A7DC-0F229F18A545} 5 | vti_cacheddtm:TX|12 Jun 2002 15:45:26 -0000 6 | vti_filesize:IR|260 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:44:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{79E46C17-3BE6-4533-8395-B6472CF940A6} 5 | vti_cacheddtm:TX|12 Jun 2002 15:44:54 -0000 6 | vti_filesize:IR|256 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/AOI_5_CA3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 15:53:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FCA3FD98-40E2-4AC0-9B36-21C7851680A1} 5 | vti_cacheddtm:TX|12 Jun 2002 15:53:52 -0000 6 | vti_filesize:IR|259 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Auto_LFSR_ALGO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:37:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1AB4E5D2-5A79-4726-809F-2CA65DC06BFE} 5 | vti_cacheddtm:TX|12 Jun 2002 16:37:50 -0000 6 | vti_filesize:IR|687 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Auto_LFSR_Param.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:56:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C65CED53-2D07-4F26-AB80-C91657BD4847} 5 | vti_cacheddtm:TX|12 Jun 2002 16:56:54 -0000 6 | vti_filesize:IR|563 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Auto_LFSR_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:36:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{386C357F-EA09-4103-9755-14540845B435} 5 | vti_cacheddtm:TX|12 Jun 2002 16:36:34 -0000 6 | vti_filesize:IR|842 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Latch_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:08:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{8E9B9E41-56D0-4207-A018-D65DC2428238} 5 | vti_cacheddtm:TX|12 Jun 2002 16:08:38 -0000 6 | vti_filesize:IR|149 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Latch_Rbar_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:10:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{94739386-1EBB-4D2E-9EA7-8689DF93446A} 5 | vti_cacheddtm:TX|12 Jun 2002 16:10:24 -0000 6 | vti_filesize:IR|181 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Majority.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:56:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9023E326-CB4A-4F27-87BC-EDA8F15DF765} 5 | vti_cacheddtm:TX|12 Jun 2002 16:56:06 -0000 6 | vti_filesize:IR|395 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Majority_4b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:56:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7FFD6926-9EB5-427F-949B-9F941DED918D} 5 | vti_cacheddtm:TX|12 Jun 2002 16:56:18 -0000 6 | vti_filesize:IR|237 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Mux_4_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Jan 2001 16:16:36 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2672771E-BFAA-4AD2-A52E-57E307A63237} 5 | vti_cacheddtm:TX|26 Jan 2001 16:16:36 -0000 6 | vti_filesize:IR|435 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Mux_4_32_case.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Jan 2001 15:51:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1CF327FA-FE39-4BA4-B373-FFBF42279C2D} 5 | vti_cacheddtm:TX|26 Jan 2001 15:51:42 -0000 6 | vti_filesize:IR|557 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Mux_4_32_if.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|26 Jan 2001 16:13:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D7CB443A-F90C-4C7C-9E3B-9710E8671E5E} 5 | vti_cacheddtm:TX|26 Jan 2001 16:13:28 -0000 6 | vti_filesize:IR|577 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Par_load_reg4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:10:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4EE4A210-C43A-4318-8881-C84E98D25067} 5 | vti_cacheddtm:TX|12 Jun 2002 17:10:16 -0000 6 | vti_filesize:IR|381 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Register_File.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:17:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{91FC6703-FEEE-4BD5-8DE7-F6B782B54C00} 5 | vti_cacheddtm:TX|12 Jun 2002 17:17:18 -0000 6 | vti_filesize:IR|561 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Row_Signal.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 23:56:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DE7DBAA9-584B-4DCE-BB4F-D718B1698C8E} 5 | vti_cacheddtm:TX|12 Jun 2002 23:56:16 -0000 6 | vti_filesize:IR|645 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Seven_Seg_Display.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:35:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{B46B4DEF-36E3-4126-A141-C63B15133CA8} 5 | vti_cacheddtm:TX|12 Jun 2002 16:35:24 -0000 6 | vti_filesize:IR|1036 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Shift_reg4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:09:36 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0278847E-26A2-478E-9A46-B9AEC28D4B97} 5 | vti_cacheddtm:TX|12 Jun 2002 17:09:36 -0000 6 | vti_filesize:IR|354 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Synchronizer.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 16:38:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E4220C67-5ED5-4D3A-9730-C95176D2864E} 5 | vti_cacheddtm:TX|13 Jun 2002 16:38:00 -0000 6 | vti_filesize:IR|405 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Universal_Shift_Reg.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:16:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3537FEE7-1C94-4F93-8B7D-BD878D33C680} 5 | vti_cacheddtm:TX|12 Jun 2002 17:16:28 -0000 6 | vti_filesize:IR|702 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/Up_Down_Implicit1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:05:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C16A435F-4B46-4D6E-A7BD-1ED3BBCFB57A} 5 | vti_cacheddtm:TX|12 Jun 2002 17:05:42 -0000 6 | vti_filesize:IR|450 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/add_4cycle.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:59:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EBBF4B00-F808-4EB3-BAB6-1CF2438D8F16} 5 | vti_cacheddtm:TX|12 Jun 2002 16:59:42 -0000 6 | vti_filesize:IR|489 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/adder_task.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:01:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{51B41754-9EBC-4674-A215-53E7AC54B752} 5 | vti_cacheddtm:TX|12 Jun 2002 17:01:52 -0000 6 | vti_filesize:IR|582 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/arithmetic_unit.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:04:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DAEAF75F-FE1A-4D8F-B019-981067483762} 5 | vti_cacheddtm:TX|12 Jun 2002 17:04:04 -0000 6 | vti_filesize:IR|616 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/asynch_df_behav.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:13:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0571E68E-09E1-476B-9775-6A29B7952229} 5 | vti_cacheddtm:TX|12 Jun 2002 16:13:06 -0000 6 | vti_filesize:IR|362 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/barrel_shifter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:11:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E06DFBB1-1FDE-45B2-929D-4CDDCD8BE35F} 5 | vti_cacheddtm:TX|12 Jun 2002 17:11:18 -0000 6 | vti_filesize:IR|420 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/comparator.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:25:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3BB725E7-9D68-43AD-9F93-F073DD6390C9} 5 | vti_cacheddtm:TX|12 Jun 2002 17:25:12 -0000 6 | vti_filesize:IR|582 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_2_CA0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:07:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9D9ECA24-96A7-49B3-9D0A-E510A403AF76} 5 | vti_cacheddtm:TX|12 Jun 2002 16:07:38 -0000 6 | vti_filesize:IR|410 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_2_CA1.txt: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:15:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{94C7A875-3080-45CD-932F-ECF2B768F115} 5 | vti_cacheddtm:TX|12 Jun 2002 16:15:12 -0000 6 | vti_filesize:IR|267 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_2_CA1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:15:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{26A55D06-A79A-4A01-926C-DD97FD8D61F5} 5 | vti_cacheddtm:TX|12 Jun 2002 16:15:54 -0000 6 | vti_filesize:IR|216 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_2_ROM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Jan 2001 02:35:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{54CCB450-1377-47B7-8A0A-BCAA0925D05D} 5 | vti_cacheddtm:TX|11 Jan 2001 02:35:50 -0000 6 | vti_filesize:IR|888 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_2_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:17:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D248634D-AD15-4833-BFB9-F75DF745B62D} 5 | vti_cacheddtm:TX|12 Jun 2002 16:17:42 -0000 6 | vti_filesize:IR|332 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_2_algo.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:25:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0CC7B4A5-D35F-4D2E-AC22-30AD30F5468C} 5 | vti_cacheddtm:TX|12 Jun 2002 16:25:52 -0000 6 | vti_filesize:IR|409 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/compare_32_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:16:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FCBBC994-4E40-4FB7-A560-46AF4A7EEBA5} 5 | vti_cacheddtm:TX|12 Jun 2002 16:16:50 -0000 6 | vti_filesize:IR|287 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/decoder.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:32:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{319D6324-A497-43E1-A821-BD843305AC44} 5 | vti_cacheddtm:TX|12 Jun 2002 16:32:34 -0000 6 | vti_filesize:IR|950 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/df_behav.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:12:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E8166E81-D076-4995-8517-878BA77B031B} 5 | vti_cacheddtm:TX|12 Jun 2002 16:12:10 -0000 6 | vti_filesize:IR|332 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/encoder.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:30:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{23A143DE-436E-49F0-9C57-B8FB2964B5E2} 5 | vti_cacheddtm:TX|12 Jun 2002 16:30:52 -0000 6 | vti_filesize:IR|960 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/find_first_one.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:59:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9002A556-3A52-4E06-9F7F-F657BF7494A8} 5 | vti_cacheddtm:TX|12 Jun 2002 16:59:00 -0000 6 | vti_filesize:IR|386 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/pipe_2stage.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Oct 2001 02:41:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E2EC5644-B3C7-489E-A727-C5AA2241BA44} 5 | vti_cacheddtm:TX|23 Oct 2001 02:41:48 -0000 6 | vti_filesize:IR|1860 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/priority.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:31:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{74807442-E9F7-422D-943E-A77B9D4087EC} 5 | vti_cacheddtm:TX|12 Jun 2002 16:31:56 -0000 6 | vti_filesize:IR|986 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/ring_counter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:06:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0F39FA69-F0B9-4C97-ACBC-13C41306AC33} 5 | vti_cacheddtm:TX|12 Jun 2002 17:06:48 -0000 6 | vti_filesize:IR|340 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/shift_reg_PA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|28 Aug 2002 21:35:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DEA61FEB-3B8D-4D51-8341-611642A01A53} 5 | vti_cacheddtm:TX|28 Aug 2002 21:35:50 -0000 6 | vti_filesize:IR|373 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/shiftreg_PA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:19:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{683B0D78-64FC-4738-B18A-F54E630B2186} 5 | vti_cacheddtm:TX|12 Jun 2002 16:19:40 -0000 6 | vti_filesize:IR|308 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/shiftreg_PA_rev.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:21:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{18C542C4-7AAC-48D2-B6D5-979E48CEE2B4} 5 | vti_cacheddtm:TX|12 Jun 2002 16:21:18 -0000 6 | vti_filesize:IR|316 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/shiftreg_nb.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:23:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{8D09AA89-3BFB-4430-B0F8-E9E8245E5523} 5 | vti_cacheddtm:TX|12 Jun 2002 16:23:28 -0000 6 | vti_filesize:IR|376 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/synchro_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|27 Jul 2001 14:53:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2B50D9CC-8A26-4F2B-870A-82E6ACF66B7D} 5 | vti_cacheddtm:TX|27 Jul 2001 14:53:02 -0000 6 | vti_filesize:IR|398 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/t_AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 18:58:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{11D6882B-5383-4682-AAA7-AA55B7D5650B} 5 | vti_cacheddtm:TX|13 Oct 2000 18:58:42 -0000 6 | vti_filesize:IR|242 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/t_AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 18:10:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AE7FB2B1-91C7-41B4-8428-31BB3B496531} 5 | vti_cacheddtm:TX|13 Oct 2000 18:10:34 -0000 6 | vti_filesize:IR|238 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/t_Bin_Cnt_Part_RTL.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Dec 2001 16:36:30 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{37F19051-497F-47C3-BC4B-A61C80DC76D5} 5 | vti_cacheddtm:TX|13 Dec 2001 16:36:30 -0000 6 | vti_filesize:IR|426 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/t_Latch_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 19:29:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{B76FF913-4FB0-419E-819D-D2DD14A85AB4} 5 | vti_cacheddtm:TX|13 Oct 2000 19:29:48 -0000 6 | vti_filesize:IR|458 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/t_Latch_Rbar_CA.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Oct 2000 20:14:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7B55E26E-53BD-48A5-85FB-DE69E007D100} 5 | vti_cacheddtm:TX|13 Oct 2000 20:14:06 -0000 6 | vti_filesize:IR|619 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/tr_latch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 16:14:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{9FA731ED-B354-4792-B734-9A46FBB9793A} 5 | vti_cacheddtm:TX|12 Jun 2002 16:14:04 -0000 6 | vti_filesize:IR|195 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/up_down_counter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:07:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CF78523A-C84F-4447-B928-D8EC9C7D6745} 5 | vti_cacheddtm:TX|12 Jun 2002 17:07:52 -0000 6 | vti_filesize:IR|502 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/_vti_cnf/word_aligner.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:02:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4A6A1F37-2521-4477-AA15-CA11D63D049B} 5 | vti_cacheddtm:TX|12 Jun 2002 17:02:22 -0000 6 | vti_filesize:IR|383 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/compare_2_CA1.v: -------------------------------------------------------------------------------- 1 | module compare_2_CA1 (A_lt_B, A_gt_B, A_eq_B, A, B); 2 | input [1: 0] A, B; 3 | output A_lt_B, A_gt_B, A_eq_B; 4 | 5 | assign A_lt_B = (A < B); 6 | assign A_gt_B = (A > B); 7 | assign A_eq_B = (A == B); 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/t_AOI_5_CA1.v: -------------------------------------------------------------------------------- 1 | module AOI_5_CA1 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 3 | output y_out; 4 | 5 | assign y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)) : 1'bz; 6 | 7 | endmodule 8 | 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/t_AOI_5_CA2.v: -------------------------------------------------------------------------------- 1 | module AOI_5_CA2 (y_out, x_in1, x_in2, x_in3, x_in4, x_in5, enable); 2 | input x_in1, x_in2, x_in3, x_in4, x_in5, enable; 3 | output y_out; 4 | 5 | wire y_out = enable ? ~((x_in1 & x_in2) | (x_in3 & x_in4 & x_in5)) : 1'bz; 6 | 7 | endmodule 8 | 9 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 5/tr_latch.v: -------------------------------------------------------------------------------- 1 | module tr_latch (q_out, enable, data); 2 | output q_out; 3 | input enable, data; 4 | reg q_out; 5 | 6 | always @ (enable or data) 7 | begin 8 | if (enable) q_out = data; 9 | end 10 | endmodule 11 | 12 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/ADDVB_Models_6.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/ADDVB_Models_6.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/Uni_dir_bus.v.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/Uni_dir_bus.v.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Add_Accum_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:55:58 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F567E378-6F16-4862-9CCB-0A8AAB584A01} 5 | vti_cacheddtm:TX|12 Jun 2002 17:55:58 -0000 6 | vti_filesize:IR|373 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Add_Accum_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:30:46 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2956AC1D-7ABE-459C-A395-AB59D68E259F} 5 | vti_cacheddtm:TX|13 Jun 2002 17:30:46 -0000 6 | vti_filesize:IR|381 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Add_Accum_both.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 Nov 2001 13:44:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0C51FA48-D087-4BA7-984D-A8305A191105} 5 | vti_cacheddtm:TX|24 Nov 2001 13:44:38 -0000 6 | vti_filesize:IR|1393 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/BCD_to_Excess_3a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|05 Jul 2001 12:08:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E4C809B9-D38F-4B7E-A691-E549E7D10322} 5 | vti_cacheddtm:TX|05 Jul 2001 12:08:44 -0000 6 | vti_filesize:IR|1022 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/BCD_to_Excess_3b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:32:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0E5439AF-B55C-4841-98E7-6139101AACF3} 5 | vti_cacheddtm:TX|23 Nov 2001 16:32:00 -0000 6 | vti_filesize:IR|1737 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/BCD_to_Excess_3c.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:45:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DC3EBCB8-C5AE-4403-9FD6-D420CB95CF9D} 5 | vti_cacheddtm:TX|23 Nov 2001 16:45:56 -0000 6 | vti_filesize:IR|1728 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Bi_dir_bus.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:39:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DAB1F628-2FBC-46F1-A33F-1E1C6BA87845} 5 | vti_cacheddtm:TX|12 Jun 2002 17:39:12 -0000 6 | vti_filesize:IR|460 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/D_reg4_a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:41:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0B09C11F-266A-4FB2-94FD-502A219B8798} 5 | vti_cacheddtm:TX|12 Jun 2002 17:41:02 -0000 6 | vti_filesize:IR|328 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/NRZI.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|08 Dec 2001 19:58:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{68196FE4-025E-448D-B7A4-83D0C37BB7BA} 5 | vti_cacheddtm:TX|08 Dec 2001 19:58:52 -0000 6 | vti_filesize:IR|1929 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Seq_Rec_3_1s.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|11 Apr 2002 17:56:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{771013C5-5D93-4B32-B1A5-1D89B3AB1F62} 5 | vti_cacheddtm:TX|11 Apr 2002 17:56:22 -0000 6 | vti_filesize:IR|3556 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Seq_Rec_3_1s_Mealy.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:48:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{31F2A333-EF1D-479F-98CF-ED78F2E8F4EA} 5 | vti_cacheddtm:TX|12 Jun 2002 17:48:56 -0000 6 | vti_filesize:IR|2217 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Seq_Rec_3_1s_Moore.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:48:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{BA880662-F6C5-4F8B-BB26-8E0A5FB8EB79} 5 | vti_cacheddtm:TX|12 Jun 2002 17:48:04 -0000 6 | vti_filesize:IR|2200 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/Seq_Rec_Moore_imp.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|01 Dec 2001 01:27:36 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FDFD8DE6-B4BD-4CE7-8CDF-1610BE4373F9} 5 | vti_cacheddtm:TX|01 Dec 2001 01:27:36 -0000 6 | vti_filesize:IR|1124 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/alu_with_z1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:29:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3B035481-A7CE-4934-B4B9-C340AA18AD8E} 5 | vti_cacheddtm:TX|12 Jun 2002 17:29:22 -0000 6 | vti_filesize:IR|553 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/badd_4.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:29:50 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1645A700-A2F4-43A3-B47B-0044C5B365E8} 5 | vti_cacheddtm:TX|12 Jun 2002 17:29:50 -0000 6 | vti_filesize:IR|179 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/boole_opt.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:23:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{95B1F491-264E-40B0-94ED-4498E1DF904A} 5 | vti_cacheddtm:TX|12 Jun 2002 17:23:42 -0000 6 | vti_filesize:IR|345 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_IMP.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jul 2001 19:31:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{122ACACF-ECB3-43E4-B75B-FE2221A94E8A} 5 | vti_cacheddtm:TX|12 Jul 2001 19:31:16 -0000 6 | vti_filesize:IR|971 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_SD.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 May 2002 15:41:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{6949B223-4ADC-4F3E-A24F-9C780B70F185} 5 | vti_cacheddtm:TX|25 May 2002 15:41:34 -0000 6 | vti_filesize:IR|1389 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_SM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:25:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4E877A84-E6E7-41D0-8C5F-76D65ABDD9BB} 5 | vti_cacheddtm:TX|12 Jun 2002 18:25:42 -0000 6 | vti_filesize:IR|2801 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_a.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 21:26:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7D8610FC-4704-4BE6-9A86-9A85883096C6} 5 | vti_cacheddtm:TX|17 May 2002 21:26:10 -0000 6 | vti_filesize:IR|658 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_b.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 21:55:00 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{82668284-03E2-4390-B0C6-7053CFA1DDF7} 5 | vti_cacheddtm:TX|17 May 2002 21:55:00 -0000 6 | vti_filesize:IR|2840 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_b0.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:17:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{45D7A815-8CD8-475E-A075-4A1F9D75D542} 5 | vti_cacheddtm:TX|12 Jun 2002 18:17:52 -0000 6 | vti_filesize:IR|986 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_b1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:18:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{69AD51D2-AF05-40BD-9D26-0BEE18DE8B9A} 5 | vti_cacheddtm:TX|12 Jun 2002 18:18:32 -0000 6 | vti_filesize:IR|1056 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_b2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 18:19:32 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7E68130B-5047-48FF-B74D-E7B47DB912DE} 5 | vti_cacheddtm:TX|12 Jun 2002 18:19:32 -0000 6 | vti_filesize:IR|767 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_c.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2002 16:52:54 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EB6636EC-E8F8-4C71-AA61-9A92F07CE1AF} 5 | vti_cacheddtm:TX|17 May 2002 16:52:54 -0000 6 | vti_filesize:IR|634 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/count_ones_d.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|22 May 2002 21:05:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A217587C-627C-464A-B785-858433C325C5} 5 | vti_cacheddtm:TX|22 May 2002 21:05:48 -0000 6 | vti_filesize:IR|865 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/expression_sub.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:59:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DC2D839A-92AA-4F8A-A2CB-F43E9530E5CD} 5 | vti_cacheddtm:TX|12 Jun 2002 17:59:42 -0000 6 | vti_filesize:IR|485 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/latch_if1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:34:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{3E549DC4-1CA2-4069-834E-EC212D52A530} 5 | vti_cacheddtm:TX|12 Jun 2002 17:34:18 -0000 6 | vti_filesize:IR|296 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/latch_if2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:37:14 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{933EEBC7-13DF-42EA-B352-CCE6E184F461} 5 | vti_cacheddtm:TX|12 Jun 2002 17:37:14 -0000 6 | vti_filesize:IR|285 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/mux_4pri.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:26:08 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{73DB77DB-9386-4A91-9918-4E7CCA590F45} 5 | vti_cacheddtm:TX|12 Jun 2002 17:26:08 -0000 6 | vti_filesize:IR|357 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/mux_latch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:33:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{2FD0A98B-107A-495D-9A0A-7095209C1EB1} 5 | vti_cacheddtm:TX|12 Jun 2002 17:33:38 -0000 6 | vti_filesize:IR|291 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/mux_logic.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:29:52 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{01C41CA6-8897-424C-8C7C-8E2D69BC3F41} 5 | vti_cacheddtm:TX|13 Jun 2002 17:29:52 -0000 6 | vti_filesize:IR|226 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/mux_reg.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:52:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D87286F5-BAB2-469F-842E-58280EF58089} 5 | vti_cacheddtm:TX|12 Jun 2002 17:52:04 -0000 6 | vti_filesize:IR|351 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/operator_group.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:58:26 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{A66C368B-EC13-43DF-9401-9840DEE6AD6E} 5 | vti_cacheddtm:TX|12 Jun 2002 17:58:26 -0000 6 | vti_filesize:IR|198 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/or4_behav.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:31:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{AC21F603-DE29-4D98-A670-08A9D1C366D3} 5 | vti_cacheddtm:TX|12 Jun 2002 17:31:20 -0000 6 | vti_filesize:IR|379 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/or4_behav_latch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:32:04 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{C8FD8CD3-1C3C-420D-B852-EC8F33C9A1F8} 5 | vti_cacheddtm:TX|12 Jun 2002 17:32:04 -0000 6 | vti_filesize:IR|405 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/or_nand.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:24:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{882B7905-0F22-48A5-999C-A2A1B4B2DCC6} 5 | vti_cacheddtm:TX|12 Jun 2002 17:24:12 -0000 6 | vti_filesize:IR|156 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/res_share.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:30:24 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DE7E7D2F-7678-4421-BD31-0965818D61EE} 5 | vti_cacheddtm:TX|12 Jun 2002 17:30:24 -0000 6 | vti_filesize:IR|203 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/ripple_counter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:53:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D4332752-F3AC-4A44-9806-CDF5FCEE85EA} 5 | vti_cacheddtm:TX|12 Jun 2002 17:53:48 -0000 6 | vti_filesize:IR|832 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/shifter_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:54:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{FFEB12DC-8B98-406E-BC10-9AC2E193C208} 5 | vti_cacheddtm:TX|12 Jun 2002 17:54:48 -0000 6 | vti_filesize:IR|593 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/shifter_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:55:22 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{6E244483-0A45-4E65-AFCD-4E242D36234C} 5 | vti_cacheddtm:TX|12 Jun 2002 17:55:22 -0000 6 | vti_filesize:IR|608 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/swap_synch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 17:40:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F3733F0D-C888-48C2-A21F-AC2D264DE709} 5 | vti_cacheddtm:TX|12 Jun 2002 17:40:20 -0000 6 | vti_filesize:IR|446 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/_vti_cnf/t_BCD_Excess_3.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Nov 2001 16:54:40 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{5E8628D8-DC2B-4D12-8DD6-2CD8116962D1} 5 | vti_cacheddtm:TX|23 Nov 2001 16:54:40 -0000 6 | vti_filesize:IR|491 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/badd_4.v: -------------------------------------------------------------------------------- 1 | module badd_4 (Sum, C_out, A, B, C_in); 2 | output [3: 0] Sum; 3 | output C_out; 4 | input [3: 0] A, B; 5 | input C_in; 6 | 7 | assign {C_out, Sum} = A + B + C_in; 8 | endmodule 9 | 10 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/mux_logic.v: -------------------------------------------------------------------------------- 1 | module mux_logic (y, select, sig_G, sig_max, sig_a, sig_b); 2 | output y; 3 | input select, sig_G, sig_max, sig_a, sig_b; 4 | 5 | assign y = (select == 1) || (sig_G ==1) || (sig_max == 0) ? sig_a : sig_b; 6 | 7 | endmodule 8 | 9 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/operator_group.v: -------------------------------------------------------------------------------- 1 | module operator_group (sum1, sum2, a, b, c, d); 2 | output [4: 0] sum1, sum2; 3 | input [3: 0] a, b, c, d; 4 | 5 | 6 | assign sum1 = a + b + c + d; 7 | assign sum2 = (a + b) + (c + d); 8 | 9 | endmodule 10 | 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/or_nand.v: -------------------------------------------------------------------------------- 1 | module or_nand (y, enable, x1, x2, x3, x4); 2 | output y; 3 | input enable, x1, x2, x3, x4; 4 | 5 | assign y = ~(enable & (x1 | x2) & (x3 | x4)); 6 | endmodule 7 | 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 6/res_share.v: -------------------------------------------------------------------------------- 1 | module res_share (y_out, sel, data_a, data_b, accum); 2 | output [4: 0] y_out; 3 | input [3: 0] data_a, data_b, accum; 4 | input sel; 5 | 6 | assign y_out = data_a + (sel ? accum : data_b); 7 | endmodule 8 | 9 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/ADDVB_Models_7.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/ADDVB_Models_7.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/Clock_Unit.v: -------------------------------------------------------------------------------- 1 | module Clock_Unit (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 10; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/Gap_Finder.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/Gap_Finder.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/_vti_cnf/RISC_SPM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|16 Jul 2001 18:46:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{980A4893-B92C-420D-886C-E9D7B862C22F} 5 | vti_cacheddtm:TX|16 Jul 2001 18:46:12 -0000 6 | vti_filesize:IR|14013 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/_vti_cnf/UART_xmtr_Arch.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2001 21:16:18 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{7D7A54DB-948B-41CE-8A7F-95D74B9C8D13} 5 | vti_cacheddtm:TX|13 Jun 2001 21:16:18 -0000 6 | vti_filesize:IR|4532 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/_vti_cnf/test_RISC_SPM.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|14 Jun 2001 22:16:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{4EFEAF14-7B7F-4228-A06A-967B82E914D9} 5 | vti_cacheddtm:TX|14 Jun 2001 22:16:42 -0000 6 | vti_filesize:IR|3221 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 7/_vti_cnf/uart8_rcvr.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|19 Jul 2001 19:08:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{EA195BA9-9C91-4BAA-A55A-684D15EA7D4F} 5 | vti_cacheddtm:TX|19 Jul 2001 19:08:12 -0000 6 | vti_filesize:IR|4791 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/ADDVB_Models_8.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/ADDVB_Models_8.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/Counter8_prog.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:15:48 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{1F5A7814-F805-4AAA-ABA5-EFA58F7261E4} 5 | vti_cacheddtm:TX|12 Jun 2002 19:15:48 -0000 6 | vti_filesize:IR|1304 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/FIFO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 00:56:06 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{02B126E0-1CF0-4891-BC9D-57E1FBD18AE4} 5 | vti_cacheddtm:TX|13 Jun 2002 00:56:06 -0000 6 | vti_filesize:IR|3482 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/PLA_array.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:11:20 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{359B79BA-4F57-4BA8-A0D3-65AA374E0E7A} 5 | vti_cacheddtm:TX|12 Jun 2002 19:11:20 -0000 6 | vti_filesize:IR|438 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/PLA_plane.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:12:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{D2BFFAB7-B213-42B4-95C6-2958E0E9D330} 5 | vti_cacheddtm:TX|12 Jun 2002 19:12:02 -0000 6 | vti_filesize:IR|563 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/RAM_2048_8.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 19:08:42 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{E6D57C61-C7BB-4A8F-A3E7-76BC8A4BEC57} 5 | vti_cacheddtm:TX|12 Jun 2002 19:08:42 -0000 6 | vti_filesize:IR|9863 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/RAM_static.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|23 Apr 2002 03:53:38 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{0996E774-8D4E-4BA7-BD05-D27036195F12} 5 | vti_cacheddtm:TX|23 Apr 2002 03:53:38 -0000 6 | vti_filesize:IR|727 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/RAM_static_BD.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|17 May 2001 17:13:02 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{CA34AFE5-501B-426D-AF32-319130A86AE3} 5 | vti_cacheddtm:TX|17 May 2001 17:13:02 -0000 6 | vti_filesize:IR|1765 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/Row_Signal.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|12 Jun 2002 23:56:16 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{231BC882-B043-4D23-8C6F-CA67729CC2C3} 5 | vti_cacheddtm:TX|12 Jun 2002 23:56:16 -0000 6 | vti_filesize:IR|645 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/SRAM_with_Con.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|24 May 2001 16:13:28 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{133E62DC-D79D-4646-BFBC-A84E4321F3A0} 5 | vti_cacheddtm:TX|24 May 2001 16:13:28 -0000 6 | vti_filesize:IR|10871 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 8/_vti_cnf/t_keypad_FIFO.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|13 Jun 2002 17:28:12 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F0031315-D554-49BB-B673-EAB19058BDB0} 5 | vti_cacheddtm:TX|13 Jun 2002 17:28:12 -0000 6 | vti_filesize:IR|3162 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 9/ADDVB_Models_9.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 9/ADDVB_Models_9.doc -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 9/DSP/_vti_cnf/IIR_Filter.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 Oct 2001 22:20:44 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{DAB5212C-9834-4709-8E8E-A10E6BB1D9FD} 5 | vti_cacheddtm:TX|25 Oct 2001 22:20:44 -0000 6 | vti_filesize:IR|2222 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 9/DSP/_vti_cnf/decimator_1.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|15 Aug 2001 14:31:56 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{F0777245-3149-4656-A8F0-B6683F434FC7} 5 | vti_cacheddtm:TX|15 Aug 2001 14:31:56 -0000 6 | vti_filesize:IR|442 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 9/DSP/_vti_cnf/decimator_2.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|15 Aug 2001 14:48:34 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{50E2B1AF-BB94-4309-BCDB-8E4025B3EA14} 5 | vti_cacheddtm:TX|15 Aug 2001 14:48:34 -0000 6 | vti_filesize:IR|447 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Chapter 9/DSP/_vti_cnf/test_IIR.v: -------------------------------------------------------------------------------- 1 | vti_encoding:SR|utf8-nl 2 | vti_timelastmodified:TR|25 Oct 2001 22:22:10 -0000 3 | vti_extenderversion:SR|5.0.2.4330 4 | vti_lineageid:SR|{38406A39-B3A7-44F7-9849-D6A3C87A6702} 5 | vti_cacheddtm:TX|25 Oct 2001 22:22:10 -0000 6 | vti_filesize:IR|1605 7 | vti_backlinkinfo:VX| 8 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Clock generator/Clock_Unit.v: -------------------------------------------------------------------------------- 1 | module Clock_Unit (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 10; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Clock generator/clock.v: -------------------------------------------------------------------------------- 1 | module clock_gen (clock); 2 | parameter Half_cycle = 50; 3 | output clock; 4 | reg clock; 5 | 6 | initial 7 | clock = 0; 8 | 9 | always 10 | begin 11 | # Half_cycle clock = ~ clock; 12 | end 13 | endmodule 14 | 15 | -------------------------------------------------------------------------------- /ciletti/Advanced Digital Design with the Verilog HDL源码/Models and Testbenches 11_10_2004/Clock generator/clock_gen.v: -------------------------------------------------------------------------------- 1 | module Clock_Gen (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 5; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/Test_Plan.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/Test_Plan.doc -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/decodestage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/decodestage.vsd -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/executestage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/executestage.vsd -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/fetchstage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/fetchstage.vsd -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/memorystage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/memorystage.vsd -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/mipsblock.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/mipsblock.vsd -------------------------------------------------------------------------------- /hmc-mips-7-3-15/doc/originalblock.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/hmc-mips-7-3-15/doc/originalblock.vsd -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/adelaide/test_mux2_zip.cmd: -------------------------------------------------------------------------------- 1 | |test_mux2_zip.cmd 2 | 3 | print s=0, expect s_out=0, sb_out=1 4 | l s 5 | s 1 6 | assert s_out 0 7 | assert sb_out 1 8 | 9 | print s=1, expect s_out=1, sb_out=0 10 | h s 11 | s 1 12 | assert s_out 1 13 | assert sb_out 0 14 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_000.dat: -------------------------------------------------------------------------------- 1 | 20020000 2 | 20030001 3 | 20050015 4 | 00432020 5 | 00601020 6 | 00801820 7 | 10850003 8 | 00000000 9 | 1000fffa 10 | 00000000 11 | ac440007 12 | 1000ffff 13 | 00000000 14 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_001.dat: -------------------------------------------------------------------------------- 1 | 20020005 2 | 2003000c 3 | 2067fff7 4 | 00e22025 5 | 00642824 6 | 00a42820 7 | 10a7000d 8 | 00000000 9 | 0064202a 10 | 10800002 11 | 00000000 12 | 20050000 13 | 00e2202a 14 | 00853820 15 | 00e23822 16 | ac6701f4 17 | 8c020200 18 | 10000002 19 | 00000000 20 | 20020001 21 | ac020204 22 | 1000ffff 23 | 00000000 24 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_002.dat: -------------------------------------------------------------------------------- 1 | 2402fff6 2 | 2403000a 3 | 00431021 4 | 24440064 5 | 2445ff9c 6 | 2843ffff 7 | 00431021 8 | 2c437fff 9 | 3c0470f0 10 | 3484f000 11 | 3884fff0 12 | 2c82ffff 13 | 00431021 14 | ac820000 15 | 1000ffff 16 | 00000000 17 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_003.dat: -------------------------------------------------------------------------------- 1 | 2402fff6 2 | 2403000a 3 | 00632823 4 | 14a00013 5 | 00431021 6 | 24040064 7 | 24440064 8 | 2445ff9c 9 | 0045182a 10 | 00431024 11 | 34057fff 12 | 30a57fff 13 | 0045182b 14 | 3c0470f0 15 | 3405f000 16 | 00852025 17 | 3405fff0 18 | 3884fff0 19 | 2005ffff 20 | 0085102b 21 | 00431021 22 | 00822027 23 | ac820003 24 | 1000ffff 25 | 00000000 26 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_004.dat: -------------------------------------------------------------------------------- 1 | 2402007f 2 | 00021942 3 | 00621004 4 | 00022580 5 | 00042583 6 | 3c058000 7 | 00852026 8 | 34050005 9 | 00a42007 10 | 00642004 11 | 00031842 12 | 00642006 13 | ac820000 14 | 1000ffff 15 | 00000000 16 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_006.dat: -------------------------------------------------------------------------------- 1 | 2003ffff 2 | 40836000 3 | 00000000 4 | 00000000 5 | 00000000 6 | 40046000 7 | ac80ffff 8 | 1000ffff 9 | 00000000 10 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_007.dat: -------------------------------------------------------------------------------- 1 | 2003ffff 2 | 20040010 3 | ac830000 4 | a0800001 5 | 20065555 6 | 00063200 7 | a4860002 8 | 8c850000 9 | 00000000 10 | ac850004 11 | 1000ffff 12 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_023.dat: -------------------------------------------------------------------------------- 1 | 24080200 2 | 3c09bfc0 3 | 35290200 4 | 3c0adead 5 | 340bbee0 6 | ad0a0000 7 | a1200000 8 | ad2b0000 9 | 8d0a0000 10 | 8d2b0000 11 | 014b5025 12 | a1000000 13 | 240b000f 14 | ad2b0000 15 | 8d0c0000 16 | 014c5025 17 | ac0a0000 18 | 1000ffff 19 | 00000000 20 | 00000000 21 | -------------------------------------------------------------------------------- /hmc-mips-7-3-15/testing/test_025.dat: -------------------------------------------------------------------------------- 1 | 24080200 2 | 3c0adead 3 | 24090400 4 | 340bbeef 5 | ad0a0000 6 | ad2b0000 7 | 00000000 8 | 00000000 9 | 00000000 10 | 8d2a0000 11 | 8d0b0000 12 | 014b5025 13 | ac0a0000 14 | 1000ffff 15 | 00000000 16 | 00000000 17 | -------------------------------------------------------------------------------- /learnVerilog_2013/Cilietti/Clock_Unit.v: -------------------------------------------------------------------------------- 1 | module Clock_Unit (clock); 2 | output clock; 3 | reg clock; 4 | parameter delay = 0; 5 | parameter half_cycle = 10; 6 | initial begin 7 | #delay clock = 0; 8 | forever #half_cycle clock = ~clock; 9 | end 10 | endmodule 11 | -------------------------------------------------------------------------------- /learnVerilog_2013/Cilietti/RISC_SPM_20130220155415.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/learnVerilog_2013/Cilietti/RISC_SPM_20130220155415.jpg -------------------------------------------------------------------------------- /learnVerilog_2013/Verilog HDL/success_Feb212013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlsi1217/ASIC/26565ac05915dd3acf139bc8b92408bfdf4bdd70/learnVerilog_2013/Verilog HDL/success_Feb212013.png -------------------------------------------------------------------------------- /verilog 100 examples/COMPARE.V: -------------------------------------------------------------------------------- 1 | module compare(a,b,equal); 2 | 3 | parameter size=1; 4 | input [size-1:0]a,b; 5 | output equal; 6 | 7 | assign equal=(a==b)?1:0; 8 | endmodule 9 | -------------------------------------------------------------------------------- /verilog 100 examples/DECODER1.V: -------------------------------------------------------------------------------- 1 | module decoder(out,in); 2 | output [7:0] out; 3 | input [2:0] in; 4 | assign out=1'b1<