├── .gitignore ├── CAN.qpf ├── CAN.qsf ├── CAN.qws ├── CAN_description.txt ├── Custom_Can └── simulation │ └── qsim │ ├── CAN.sft │ ├── CAN.vo │ └── CAN_modelsim.xrf ├── Waveform1.vwf ├── baud_rate.v ├── baud_rate.v.bak ├── can_clk.v ├── can_clk.v.bak ├── can_crc.v ├── can_crc.v.bak ├── can_rx.v ├── can_rx.v.bak ├── can_test.v ├── can_top.sdc ├── can_top.v ├── can_top.v.bak ├── can_top_inst.v ├── can_tx.v ├── can_tx.v.bak ├── db ├── .cmp.kpt ├── CAN.(0).cnf.cdb ├── CAN.(0).cnf.hdb ├── CAN.(1).cnf.cdb ├── CAN.(1).cnf.hdb ├── CAN.(10).cnf.cdb ├── CAN.(10).cnf.hdb ├── CAN.(2).cnf.cdb ├── CAN.(2).cnf.hdb ├── CAN.(3).cnf.cdb ├── CAN.(3).cnf.hdb ├── CAN.(4).cnf.cdb ├── CAN.(4).cnf.hdb ├── CAN.(5).cnf.cdb ├── CAN.(5).cnf.hdb ├── CAN.(6).cnf.cdb ├── CAN.(6).cnf.hdb ├── CAN.(7).cnf.cdb ├── CAN.(7).cnf.hdb ├── CAN.(8).cnf.cdb ├── CAN.(8).cnf.hdb ├── CAN.(9).cnf.cdb ├── CAN.(9).cnf.hdb ├── CAN.ace_cmp.bpm ├── CAN.ace_cmp.cdb ├── CAN.ace_cmp.hdb ├── CAN.ae.hdb ├── CAN.asm.qmsg ├── CAN.asm.rdb ├── CAN.asm_labs.ddb ├── CAN.cbx.xml ├── CAN.cmp.bpm ├── CAN.cmp.cdb ├── CAN.cmp.hdb ├── CAN.cmp.idb ├── CAN.cmp.logdb ├── CAN.cmp.rdb ├── CAN.cmp_merge.kpt ├── CAN.cycloneive_io_sim_cache.45um_ff_1200mv_0c_fast.hsd ├── CAN.cycloneive_io_sim_cache.45um_ss_1200mv_0c_slow.hsd ├── CAN.cycloneive_io_sim_cache.45um_ss_1200mv_85c_slow.hsd ├── CAN.db_info ├── CAN.eco.cdb ├── CAN.eda.qmsg ├── CAN.fit.qmsg ├── CAN.hier_info ├── CAN.hif ├── CAN.lpc.html ├── CAN.lpc.rdb ├── CAN.lpc.txt ├── CAN.map.ammdb ├── CAN.map.bpm ├── CAN.map.cdb ├── CAN.map.hdb ├── CAN.map.kpt ├── CAN.map.logdb ├── CAN.map.qmsg ├── CAN.map.rdb ├── CAN.map_bb.cdb ├── CAN.map_bb.hdb ├── CAN.map_bb.logdb ├── CAN.pplq.rdb ├── CAN.pre_map.cdb ├── CAN.pre_map.hdb ├── CAN.root_partition.map.reg_db.cdb ├── CAN.routing.rdb ├── CAN.rtlv.hdb ├── CAN.rtlv_sg.cdb ├── CAN.rtlv_sg_swap.cdb ├── CAN.sld_design_entry.sci ├── CAN.sld_design_entry_dsc.sci ├── CAN.smart_action.txt ├── CAN.smp_dump.txt ├── CAN.sta.qmsg ├── CAN.sta.rdb ├── CAN.sta_cmp.8_slow_1200mv_85c.tdb ├── CAN.tis_db_list.ddb ├── CAN.tiscmp.fast_1200mv_0c.ddb ├── CAN.tiscmp.fastest_slow_1200mv_0c.ddb ├── CAN.tiscmp.fastest_slow_1200mv_85c.ddb ├── CAN.tiscmp.slow_1200mv_0c.ddb ├── CAN.tiscmp.slow_1200mv_85c.ddb ├── CAN.vpr.ammdb ├── CAN_partition_pins.json └── prev_cmp_CAN.qmsg ├── incremental_db ├── README └── compiled_partitions │ ├── CAN.db_info │ ├── CAN.root_partition.cmp.ammdb │ ├── CAN.root_partition.cmp.cdb │ ├── CAN.root_partition.cmp.dfp │ ├── CAN.root_partition.cmp.hdb │ ├── CAN.root_partition.cmp.logdb │ ├── CAN.root_partition.cmp.rcfdb │ ├── CAN.root_partition.map.cdb │ ├── CAN.root_partition.map.dpi │ ├── CAN.root_partition.map.hbdb.cdb │ ├── CAN.root_partition.map.hbdb.hb_info │ ├── CAN.root_partition.map.hbdb.hdb │ ├── CAN.root_partition.map.hbdb.sig │ ├── CAN.root_partition.map.hdb │ ├── CAN.root_partition.map.kpt │ └── CAN.rrp.hdb ├── output_files ├── CAN.asm.rpt ├── CAN.cdf ├── CAN.done ├── CAN.eda.rpt ├── CAN.fit.rpt ├── CAN.fit.smsg ├── CAN.fit.summary ├── CAN.flow.rpt ├── CAN.jdi ├── CAN.map.rpt ├── CAN.map.smsg ├── CAN.map.summary ├── CAN.pin ├── CAN.sld ├── CAN.sof ├── CAN.sta.rpt └── CAN.sta.summary ├── pmramif.v └── simulation └── qsim ├── .gitignore ├── CAN.do ├── CAN.msim.vcd ├── CAN.sft ├── CAN.vo ├── CAN_modelsim.xrf ├── Waveform.vwf.vt ├── Waveform1.vwf.vt ├── transcript ├── vwf_sim_transcript └── work ├── _info ├── _lib.qdb ├── _lib1_115.qdb ├── _lib1_115.qpg ├── _lib1_115.qtl └── _vmake /.gitignore: -------------------------------------------------------------------------------- 1 | *.bak -------------------------------------------------------------------------------- /CAN.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/CAN.qpf -------------------------------------------------------------------------------- /CAN.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/CAN.qsf -------------------------------------------------------------------------------- /CAN.qws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/CAN.qws -------------------------------------------------------------------------------- /CAN_description.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Custom_Can/simulation/qsim/CAN.sft: -------------------------------------------------------------------------------- 1 | set tool_name "ModelSim-Altera (Verilog)" 2 | -------------------------------------------------------------------------------- /Custom_Can/simulation/qsim/CAN.vo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/Custom_Can/simulation/qsim/CAN.vo -------------------------------------------------------------------------------- /Custom_Can/simulation/qsim/CAN_modelsim.xrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/Custom_Can/simulation/qsim/CAN_modelsim.xrf -------------------------------------------------------------------------------- /Waveform1.vwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/Waveform1.vwf -------------------------------------------------------------------------------- /baud_rate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/baud_rate.v -------------------------------------------------------------------------------- /baud_rate.v.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /can_clk.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_clk.v -------------------------------------------------------------------------------- /can_clk.v.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_clk.v.bak -------------------------------------------------------------------------------- /can_crc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_crc.v -------------------------------------------------------------------------------- /can_crc.v.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /can_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_rx.v -------------------------------------------------------------------------------- /can_rx.v.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_rx.v.bak -------------------------------------------------------------------------------- /can_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_test.v -------------------------------------------------------------------------------- /can_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_top.sdc -------------------------------------------------------------------------------- /can_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_top.v -------------------------------------------------------------------------------- /can_top.v.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /can_top_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_top_inst.v -------------------------------------------------------------------------------- /can_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/can_tx.v -------------------------------------------------------------------------------- /can_tx.v.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/.cmp.kpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/.cmp.kpt -------------------------------------------------------------------------------- /db/CAN.(0).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(0).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(0).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(0).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(1).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(1).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(1).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(1).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(10).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(10).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(10).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(10).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(2).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(2).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(2).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(2).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(3).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(3).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(3).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(3).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(4).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(4).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(4).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(4).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(5).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(5).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(5).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(5).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(6).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(6).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(6).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(6).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(7).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(7).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(7).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(7).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(8).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(8).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(8).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(8).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.(9).cnf.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(9).cnf.cdb -------------------------------------------------------------------------------- /db/CAN.(9).cnf.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.(9).cnf.hdb -------------------------------------------------------------------------------- /db/CAN.ace_cmp.bpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.ace_cmp.bpm -------------------------------------------------------------------------------- /db/CAN.ace_cmp.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.ace_cmp.cdb -------------------------------------------------------------------------------- /db/CAN.ace_cmp.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.ace_cmp.hdb -------------------------------------------------------------------------------- /db/CAN.ae.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.ae.hdb -------------------------------------------------------------------------------- /db/CAN.asm.qmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.asm.qmsg -------------------------------------------------------------------------------- /db/CAN.asm.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.asm.rdb -------------------------------------------------------------------------------- /db/CAN.asm_labs.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.asm_labs.ddb -------------------------------------------------------------------------------- /db/CAN.cbx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cbx.xml -------------------------------------------------------------------------------- /db/CAN.cmp.bpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp.bpm -------------------------------------------------------------------------------- /db/CAN.cmp.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp.cdb -------------------------------------------------------------------------------- /db/CAN.cmp.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp.hdb -------------------------------------------------------------------------------- /db/CAN.cmp.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp.idb -------------------------------------------------------------------------------- /db/CAN.cmp.logdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp.logdb -------------------------------------------------------------------------------- /db/CAN.cmp.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp.rdb -------------------------------------------------------------------------------- /db/CAN.cmp_merge.kpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cmp_merge.kpt -------------------------------------------------------------------------------- /db/CAN.cycloneive_io_sim_cache.45um_ff_1200mv_0c_fast.hsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cycloneive_io_sim_cache.45um_ff_1200mv_0c_fast.hsd -------------------------------------------------------------------------------- /db/CAN.cycloneive_io_sim_cache.45um_ss_1200mv_0c_slow.hsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cycloneive_io_sim_cache.45um_ss_1200mv_0c_slow.hsd -------------------------------------------------------------------------------- /db/CAN.cycloneive_io_sim_cache.45um_ss_1200mv_85c_slow.hsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.cycloneive_io_sim_cache.45um_ss_1200mv_85c_slow.hsd -------------------------------------------------------------------------------- /db/CAN.db_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.db_info -------------------------------------------------------------------------------- /db/CAN.eco.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.eco.cdb -------------------------------------------------------------------------------- /db/CAN.eda.qmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.eda.qmsg -------------------------------------------------------------------------------- /db/CAN.fit.qmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.fit.qmsg -------------------------------------------------------------------------------- /db/CAN.hier_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.hier_info -------------------------------------------------------------------------------- /db/CAN.hif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.hif -------------------------------------------------------------------------------- /db/CAN.lpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.lpc.html -------------------------------------------------------------------------------- /db/CAN.lpc.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.lpc.rdb -------------------------------------------------------------------------------- /db/CAN.lpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.lpc.txt -------------------------------------------------------------------------------- /db/CAN.map.ammdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.ammdb -------------------------------------------------------------------------------- /db/CAN.map.bpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.bpm -------------------------------------------------------------------------------- /db/CAN.map.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.cdb -------------------------------------------------------------------------------- /db/CAN.map.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.hdb -------------------------------------------------------------------------------- /db/CAN.map.kpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.kpt -------------------------------------------------------------------------------- /db/CAN.map.logdb: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /db/CAN.map.qmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.qmsg -------------------------------------------------------------------------------- /db/CAN.map.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map.rdb -------------------------------------------------------------------------------- /db/CAN.map_bb.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map_bb.cdb -------------------------------------------------------------------------------- /db/CAN.map_bb.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.map_bb.hdb -------------------------------------------------------------------------------- /db/CAN.map_bb.logdb: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /db/CAN.pplq.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.pplq.rdb -------------------------------------------------------------------------------- /db/CAN.pre_map.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.pre_map.cdb -------------------------------------------------------------------------------- /db/CAN.pre_map.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.pre_map.hdb -------------------------------------------------------------------------------- /db/CAN.root_partition.map.reg_db.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.root_partition.map.reg_db.cdb -------------------------------------------------------------------------------- /db/CAN.routing.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.routing.rdb -------------------------------------------------------------------------------- /db/CAN.rtlv.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.rtlv.hdb -------------------------------------------------------------------------------- /db/CAN.rtlv_sg.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.rtlv_sg.cdb -------------------------------------------------------------------------------- /db/CAN.rtlv_sg_swap.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.rtlv_sg_swap.cdb -------------------------------------------------------------------------------- /db/CAN.sld_design_entry.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.sld_design_entry.sci -------------------------------------------------------------------------------- /db/CAN.sld_design_entry_dsc.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.sld_design_entry_dsc.sci -------------------------------------------------------------------------------- /db/CAN.smart_action.txt: -------------------------------------------------------------------------------- 1 | DONE 2 | -------------------------------------------------------------------------------- /db/CAN.smp_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.smp_dump.txt -------------------------------------------------------------------------------- /db/CAN.sta.qmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.sta.qmsg -------------------------------------------------------------------------------- /db/CAN.sta.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.sta.rdb -------------------------------------------------------------------------------- /db/CAN.sta_cmp.8_slow_1200mv_85c.tdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.sta_cmp.8_slow_1200mv_85c.tdb -------------------------------------------------------------------------------- /db/CAN.tis_db_list.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.tis_db_list.ddb -------------------------------------------------------------------------------- /db/CAN.tiscmp.fast_1200mv_0c.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.tiscmp.fast_1200mv_0c.ddb -------------------------------------------------------------------------------- /db/CAN.tiscmp.fastest_slow_1200mv_0c.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.tiscmp.fastest_slow_1200mv_0c.ddb -------------------------------------------------------------------------------- /db/CAN.tiscmp.fastest_slow_1200mv_85c.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.tiscmp.fastest_slow_1200mv_85c.ddb -------------------------------------------------------------------------------- /db/CAN.tiscmp.slow_1200mv_0c.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.tiscmp.slow_1200mv_0c.ddb -------------------------------------------------------------------------------- /db/CAN.tiscmp.slow_1200mv_85c.ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.tiscmp.slow_1200mv_85c.ddb -------------------------------------------------------------------------------- /db/CAN.vpr.ammdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN.vpr.ammdb -------------------------------------------------------------------------------- /db/CAN_partition_pins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/CAN_partition_pins.json -------------------------------------------------------------------------------- /db/prev_cmp_CAN.qmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/db/prev_cmp_CAN.qmsg -------------------------------------------------------------------------------- /incremental_db/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/README -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.db_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.db_info -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.cmp.ammdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.cmp.ammdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.cmp.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.cmp.cdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.cmp.dfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.cmp.dfp -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.cmp.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.cmp.hdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.cmp.logdb: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.cmp.rcfdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.cmp.rcfdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.cdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.dpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.dpi -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.cdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.hb_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.hb_info -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.hdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.hbdb.sig: -------------------------------------------------------------------------------- 1 | c5eb7f6cdd530884c3b884e0a3668ea4 -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.hdb -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.root_partition.map.kpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.root_partition.map.kpt -------------------------------------------------------------------------------- /incremental_db/compiled_partitions/CAN.rrp.hdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/incremental_db/compiled_partitions/CAN.rrp.hdb -------------------------------------------------------------------------------- /output_files/CAN.asm.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.asm.rpt -------------------------------------------------------------------------------- /output_files/CAN.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.cdf -------------------------------------------------------------------------------- /output_files/CAN.done: -------------------------------------------------------------------------------- 1 | Fri Nov 06 16:17:42 2020 2 | -------------------------------------------------------------------------------- /output_files/CAN.eda.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.eda.rpt -------------------------------------------------------------------------------- /output_files/CAN.fit.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.fit.rpt -------------------------------------------------------------------------------- /output_files/CAN.fit.smsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.fit.smsg -------------------------------------------------------------------------------- /output_files/CAN.fit.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.fit.summary -------------------------------------------------------------------------------- /output_files/CAN.flow.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.flow.rpt -------------------------------------------------------------------------------- /output_files/CAN.jdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.jdi -------------------------------------------------------------------------------- /output_files/CAN.map.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.map.rpt -------------------------------------------------------------------------------- /output_files/CAN.map.smsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.map.smsg -------------------------------------------------------------------------------- /output_files/CAN.map.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.map.summary -------------------------------------------------------------------------------- /output_files/CAN.pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.pin -------------------------------------------------------------------------------- /output_files/CAN.sld: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /output_files/CAN.sof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.sof -------------------------------------------------------------------------------- /output_files/CAN.sta.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.sta.rpt -------------------------------------------------------------------------------- /output_files/CAN.sta.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/output_files/CAN.sta.summary -------------------------------------------------------------------------------- /pmramif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/pmramif.v -------------------------------------------------------------------------------- /simulation/qsim/.gitignore: -------------------------------------------------------------------------------- 1 | *.vwf -------------------------------------------------------------------------------- /simulation/qsim/CAN.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/CAN.do -------------------------------------------------------------------------------- /simulation/qsim/CAN.msim.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/CAN.msim.vcd -------------------------------------------------------------------------------- /simulation/qsim/CAN.sft: -------------------------------------------------------------------------------- 1 | set tool_name "ModelSim-Altera (Verilog)" 2 | -------------------------------------------------------------------------------- /simulation/qsim/CAN.vo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/CAN.vo -------------------------------------------------------------------------------- /simulation/qsim/CAN_modelsim.xrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/CAN_modelsim.xrf -------------------------------------------------------------------------------- /simulation/qsim/Waveform.vwf.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/Waveform.vwf.vt -------------------------------------------------------------------------------- /simulation/qsim/Waveform1.vwf.vt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/Waveform1.vwf.vt -------------------------------------------------------------------------------- /simulation/qsim/transcript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/transcript -------------------------------------------------------------------------------- /simulation/qsim/vwf_sim_transcript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/vwf_sim_transcript -------------------------------------------------------------------------------- /simulation/qsim/work/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/work/_info -------------------------------------------------------------------------------- /simulation/qsim/work/_lib.qdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/work/_lib.qdb -------------------------------------------------------------------------------- /simulation/qsim/work/_lib1_115.qdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/work/_lib1_115.qdb -------------------------------------------------------------------------------- /simulation/qsim/work/_lib1_115.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/work/_lib1_115.qpg -------------------------------------------------------------------------------- /simulation/qsim/work/_lib1_115.qtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlxyF/CAN-fpga/HEAD/simulation/qsim/work/_lib1_115.qtl -------------------------------------------------------------------------------- /simulation/qsim/work/_vmake: -------------------------------------------------------------------------------- 1 | m255 2 | K4 3 | z0 4 | cModel Technology 5 | --------------------------------------------------------------------------------