├── apps ├── reference │ ├── MicroWeb │ │ ├── COPYLEFT │ │ ├── Makefile │ │ ├── README │ │ ├── arp.c │ │ ├── arp.h │ │ ├── csio.c │ │ ├── csio.h │ │ ├── csioa.asm │ │ ├── csioa.h │ │ ├── http.c │ │ ├── http.h │ │ ├── icmp.c │ │ ├── icmp.h │ │ ├── ip.c │ │ ├── ip.h │ │ ├── main.c │ │ ├── packets.h │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── udp.c │ │ └── udp.h │ └── avr-webserver │ │ ├── AVRnetCPannel.gif │ │ ├── ReadmeEN.html │ │ ├── ReadmeTH.html │ │ ├── adc.c │ │ ├── adc.h │ │ ├── arp.c │ │ ├── arp.h │ │ ├── avrnet.aps │ │ ├── avrnet.aws │ │ ├── avrnet.pnproj │ │ ├── default │ │ └── Makefile │ │ ├── enc28j60.c │ │ ├── enc28j60.h │ │ ├── ethernet.c │ │ ├── ethernet.h │ │ ├── homepage.htm │ │ ├── http.c │ │ ├── http.h │ │ ├── icmp.c │ │ ├── icmp.h │ │ ├── includes.h │ │ ├── ip.c │ │ ├── ip.h │ │ ├── lcd.c │ │ ├── lcd.h │ │ ├── main.c │ │ ├── menu.c │ │ ├── menu.h │ │ ├── read.me │ │ ├── struct.h │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── udp.c │ │ └── udp.h └── webserver │ ├── Makefile │ ├── Makefile1 │ ├── arp.c │ ├── arp.h │ ├── enc28j60.c │ ├── enc28j60.h │ ├── ethernet.c │ ├── ethernet.h │ ├── http.c │ ├── http.h │ ├── icmp.c │ ├── icmp.h │ ├── includes.h │ ├── ip.c │ ├── ip.h │ ├── lcd.c │ ├── lcd.h │ ├── main.c │ ├── menu.c │ ├── menu.h │ ├── struct.h │ ├── tcp.c │ ├── tcp.h │ ├── udp.c │ └── udp.h ├── benchmark8051 ├── rtl │ ├── filelist_top.f │ ├── oc8051_acc.v │ ├── oc8051_alu.v │ ├── oc8051_alu_src_sel.v │ ├── oc8051_b_register.v │ ├── oc8051_cache_ram.v │ ├── oc8051_comp.v │ ├── oc8051_cy_select.v │ ├── oc8051_decoder.v │ ├── oc8051_defines.v │ ├── oc8051_divide.v │ ├── oc8051_dptr.v │ ├── oc8051_icache.v │ ├── oc8051_indi_addr.v │ ├── oc8051_int.v │ ├── oc8051_memory_interface.v │ ├── oc8051_multiply.v │ ├── oc8051_ports.v │ ├── oc8051_psw.v │ ├── oc8051_ram_256x8_two_bist.v │ ├── oc8051_ram_64x32_dual_bist.v │ ├── oc8051_ram_top.v │ ├── oc8051_rom.v │ ├── oc8051_sfr.v │ ├── oc8051_sp.v │ ├── oc8051_tc.v │ ├── oc8051_tc2.v │ ├── oc8051_timescale.v │ ├── oc8051_top.v │ ├── oc8051_uart.v │ ├── oc8051_wb_iinterface.v │ └── oc8051_xrom.v └── verif │ ├── C │ ├── cast.c │ ├── divmul.c │ ├── fib.c │ ├── gcd.c │ ├── sort.c │ └── xram.c │ ├── hex │ ├── cast.hex │ ├── divmul.hex │ ├── fib.hex │ ├── gcd.hex │ ├── sort.hex │ └── xram.hex │ ├── sim │ ├── dat │ │ ├── oc8051_eai.in │ │ └── oc8051_eax.in │ ├── filelist_top.f │ ├── run_nc │ └── run_vcs │ ├── tb │ ├── oc8051_fpga_tb.v │ ├── oc8051_serial.v │ ├── oc8051_tb.v │ ├── oc8051_timescale.v │ ├── oc8051_uart_test.v │ ├── oc8051_xram.v │ └── oc8051_xrom.v │ └── tests │ └── dat │ ├── cast.dat │ ├── divmul.dat │ ├── fib.dat │ ├── gcd.dat │ ├── sort.dat │ └── xram.dat ├── doc └── read.me ├── env └── setup.csh ├── fpga └── altera │ ├── summary │ ├── turbo8051.fit.summary │ ├── turbo8051.map.summary │ └── turbo8051.tan.summary │ ├── turbo8051.qpf │ └── turbo8051.qsf ├── models └── altera │ └── altera_stargate_pll.v ├── rtl ├── 8051 │ ├── filelist_top.f │ ├── make_verilog │ ├── oc8051_acc.v │ ├── oc8051_alu.v │ ├── oc8051_alu_src_sel.v │ ├── oc8051_alu_test.v │ ├── oc8051_b_register.v │ ├── oc8051_cache_ram.v │ ├── oc8051_comp.v │ ├── oc8051_cy_select.v │ ├── oc8051_decoder.v │ ├── oc8051_divide.v │ ├── oc8051_dptr.v │ ├── oc8051_icache.v │ ├── oc8051_indi_addr.v │ ├── oc8051_int.v │ ├── oc8051_memory_interface.v │ ├── oc8051_multiply.v │ ├── oc8051_ports.v │ ├── oc8051_psw.v │ ├── oc8051_ram_256x8_two_bist.v │ ├── oc8051_ram_64x32_dual_bist.v │ ├── oc8051_ram_top.v │ ├── oc8051_rom.v │ ├── oc8051_sfr.v │ ├── oc8051_sp.v │ ├── oc8051_tc.v │ ├── oc8051_tc2.v │ ├── oc8051_timescale.v │ ├── oc8051_top.v │ ├── oc8051_uart.v │ ├── oc8051_wb_iinterface.v │ └── read.me ├── clkgen │ └── clkgen.v ├── core │ ├── core.v │ └── filelist_core.f ├── defs │ └── oc8051_defines.v ├── gmac │ ├── crc32 │ │ ├── g_rx_crc32.v │ │ └── g_tx_crc32.v │ ├── ctrl │ │ └── eth_parser.v │ ├── mac │ │ ├── byte_reg.v │ │ ├── dble_reg.v │ │ ├── filelist_mac.f │ │ ├── g_cfg_mgmt.v │ │ ├── g_deferral.v │ │ ├── g_deferral_rx.v │ │ ├── g_mac_core.v │ │ ├── g_md_intf.v │ │ ├── g_mii_intf.v │ │ ├── g_rx_fsm.v │ │ ├── g_rx_top.v │ │ ├── g_tx_fsm.v │ │ ├── g_tx_top.v │ │ └── s2f_sync.v │ └── top │ │ ├── filelist_top.f │ │ └── g_mac_top.v ├── lib │ ├── async_fifo.v │ ├── clk_ctl.v │ ├── dble_reg.v │ ├── double_sync_high.v │ ├── double_sync_low.v │ ├── g_dpath_ctrl.v │ ├── registers.v │ ├── sfifo.v │ ├── stat_counter.v │ ├── toggle_sync.v │ ├── wb_crossbar.v │ ├── wb_interface.v │ ├── wb_rd_mem2mem.v │ └── wb_wr_mem2mem.v ├── spi │ ├── filelist_spi.f │ ├── spi_cfg.v │ ├── spi_core.v │ ├── spi_ctl.v │ └── spi_if.v └── uart │ ├── filelist_uart.f │ ├── uart_cfg.v │ ├── uart_core.v │ ├── uart_rxfsm.v │ └── uart_txfsm.v └── verif ├── agents ├── ethernet │ ├── filelist_tb.f │ ├── tb_eth_conf.v │ ├── tb_eth_defs.v │ ├── tb_eth_objs.v │ ├── tb_eth_pktgn.v │ ├── tb_eth_tasks.v │ ├── tb_eth_top.v │ ├── tb_mii.v │ └── tb_rmii.v ├── spi │ ├── atmel │ │ └── AT45DBXXX_v2.0.3.v │ ├── spi_tasks.v │ └── st_m25p20a │ │ ├── M25P20.v │ │ ├── acdc_check.v │ │ ├── internal_logic.v │ │ ├── memory_access.v │ │ ├── parameter.v │ │ └── parameter_fast.v └── uart │ └── uart_agent.v ├── defs └── tb_defines.v ├── lib └── tb_glbl.v ├── log ├── complie.log ├── ext_cast.log ├── ext_divmul.log ├── ext_fib.log ├── ext_gcd.log ├── ext_sort.log ├── ext_xram.log ├── gmac_test_1.log ├── gmac_test_2.log ├── int_cast.log ├── int_divmul.log ├── int_fib.log ├── int_gcd.log ├── int_sort.log ├── int_xram.log ├── run_modelsim.log ├── spi_test_1.log ├── uart_test_1.log ├── x_cast.log ├── x_divmul.log ├── x_fib.log ├── x_gcd.log ├── x_sort.log └── x_xram.log ├── model ├── oc8051_xram.v └── oc8051_xrom.v ├── run ├── compile.modelsim ├── dat │ ├── gmac_loopback.dat │ ├── oc8051_xrom.in │ └── webserver.dat ├── filelist_rtl.f ├── filelist_tb.f ├── filelist_top.f ├── run.do ├── run_modelsim ├── run_vcs ├── run_vlog └── time_scale.v ├── sw ├── C │ ├── cast.c │ ├── divmul.c │ ├── fib.c │ ├── gcd.c │ ├── gmac_loopback.c │ ├── run │ ├── sort.c │ └── xram.c ├── bin │ ├── oc8051_Rom_Maker.exe │ └── read.me ├── hex │ ├── cast.hex │ ├── divmul.hex │ ├── fib.hex │ ├── gcd.hex │ ├── sort.hex │ └── xram.hex ├── read.me └── sdcc │ └── sdcc-20100629-5862-setup.exe ├── tb ├── tb_tasks.v ├── tb_top.v └── timescale_1ns_1ns.v └── testcase ├── dat ├── cast.dat ├── divmul.dat ├── fib.dat ├── gcd.dat ├── gmac_loopback.dat ├── sort.dat ├── webserver.dat └── xram.dat ├── gmac_test1.v ├── gmac_test2.v ├── spi_test1.v ├── uart_test1.v └── webserver.v /apps/reference/MicroWeb/COPYLEFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/COPYLEFT -------------------------------------------------------------------------------- /apps/reference/MicroWeb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/Makefile -------------------------------------------------------------------------------- /apps/reference/MicroWeb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/README -------------------------------------------------------------------------------- /apps/reference/MicroWeb/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/arp.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/arp.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/csio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/csio.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/csio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/csio.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/csioa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/csioa.asm -------------------------------------------------------------------------------- /apps/reference/MicroWeb/csioa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/csioa.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/http.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/http.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/icmp.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/icmp.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/ip.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/ip.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/main.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/packets.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/tcp.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/tcp.h -------------------------------------------------------------------------------- /apps/reference/MicroWeb/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/udp.c -------------------------------------------------------------------------------- /apps/reference/MicroWeb/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/MicroWeb/udp.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/AVRnetCPannel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/AVRnetCPannel.gif -------------------------------------------------------------------------------- /apps/reference/avr-webserver/ReadmeEN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/ReadmeEN.html -------------------------------------------------------------------------------- /apps/reference/avr-webserver/ReadmeTH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/ReadmeTH.html -------------------------------------------------------------------------------- /apps/reference/avr-webserver/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/adc.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/adc.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/arp.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/arp.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/avrnet.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/avrnet.aps -------------------------------------------------------------------------------- /apps/reference/avr-webserver/avrnet.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/avrnet.aws -------------------------------------------------------------------------------- /apps/reference/avr-webserver/avrnet.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/avrnet.pnproj -------------------------------------------------------------------------------- /apps/reference/avr-webserver/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/default/Makefile -------------------------------------------------------------------------------- /apps/reference/avr-webserver/enc28j60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/enc28j60.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/enc28j60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/enc28j60.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/ethernet.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/ethernet.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/homepage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/homepage.htm -------------------------------------------------------------------------------- /apps/reference/avr-webserver/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/http.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/http.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/icmp.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/icmp.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/includes.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/ip.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/ip.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/lcd.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/lcd.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/main.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/menu.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/menu.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/read.me -------------------------------------------------------------------------------- /apps/reference/avr-webserver/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/struct.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/tcp.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/tcp.h -------------------------------------------------------------------------------- /apps/reference/avr-webserver/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/udp.c -------------------------------------------------------------------------------- /apps/reference/avr-webserver/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/reference/avr-webserver/udp.h -------------------------------------------------------------------------------- /apps/webserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/Makefile -------------------------------------------------------------------------------- /apps/webserver/Makefile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/Makefile1 -------------------------------------------------------------------------------- /apps/webserver/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/arp.c -------------------------------------------------------------------------------- /apps/webserver/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/arp.h -------------------------------------------------------------------------------- /apps/webserver/enc28j60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/enc28j60.c -------------------------------------------------------------------------------- /apps/webserver/enc28j60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/enc28j60.h -------------------------------------------------------------------------------- /apps/webserver/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/ethernet.c -------------------------------------------------------------------------------- /apps/webserver/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/ethernet.h -------------------------------------------------------------------------------- /apps/webserver/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/http.c -------------------------------------------------------------------------------- /apps/webserver/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/http.h -------------------------------------------------------------------------------- /apps/webserver/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/icmp.c -------------------------------------------------------------------------------- /apps/webserver/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/icmp.h -------------------------------------------------------------------------------- /apps/webserver/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/includes.h -------------------------------------------------------------------------------- /apps/webserver/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/ip.c -------------------------------------------------------------------------------- /apps/webserver/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/ip.h -------------------------------------------------------------------------------- /apps/webserver/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/lcd.c -------------------------------------------------------------------------------- /apps/webserver/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/lcd.h -------------------------------------------------------------------------------- /apps/webserver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/main.c -------------------------------------------------------------------------------- /apps/webserver/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/menu.c -------------------------------------------------------------------------------- /apps/webserver/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/menu.h -------------------------------------------------------------------------------- /apps/webserver/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/struct.h -------------------------------------------------------------------------------- /apps/webserver/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/tcp.c -------------------------------------------------------------------------------- /apps/webserver/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/tcp.h -------------------------------------------------------------------------------- /apps/webserver/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/udp.c -------------------------------------------------------------------------------- /apps/webserver/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/apps/webserver/udp.h -------------------------------------------------------------------------------- /benchmark8051/rtl/filelist_top.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/filelist_top.f -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_acc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_acc.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_alu.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_alu_src_sel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_alu_src_sel.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_b_register.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_b_register.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_cache_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_cache_ram.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_comp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_comp.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_cy_select.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_cy_select.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_decoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_decoder.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_defines.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_divide.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_divide.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_dptr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_dptr.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_icache.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_icache.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_indi_addr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_indi_addr.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_int.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_int.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_memory_interface.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_memory_interface.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_multiply.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_multiply.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_ports.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_ports.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_psw.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_psw.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_ram_256x8_two_bist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_ram_256x8_two_bist.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_ram_64x32_dual_bist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_ram_64x32_dual_bist.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_ram_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_ram_top.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_rom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_rom.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_sfr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_sfr.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_sp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_sp.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_tc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_tc.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_tc2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_tc2.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_timescale.v: -------------------------------------------------------------------------------- 1 | 2 | 3 | `timescale 1ns/10ps 4 | -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_top.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_uart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_uart.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_wb_iinterface.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_wb_iinterface.v -------------------------------------------------------------------------------- /benchmark8051/rtl/oc8051_xrom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/rtl/oc8051_xrom.v -------------------------------------------------------------------------------- /benchmark8051/verif/C/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/C/cast.c -------------------------------------------------------------------------------- /benchmark8051/verif/C/divmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/C/divmul.c -------------------------------------------------------------------------------- /benchmark8051/verif/C/fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/C/fib.c -------------------------------------------------------------------------------- /benchmark8051/verif/C/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/C/gcd.c -------------------------------------------------------------------------------- /benchmark8051/verif/C/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/C/sort.c -------------------------------------------------------------------------------- /benchmark8051/verif/C/xram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/C/xram.c -------------------------------------------------------------------------------- /benchmark8051/verif/hex/cast.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/hex/cast.hex -------------------------------------------------------------------------------- /benchmark8051/verif/hex/divmul.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/hex/divmul.hex -------------------------------------------------------------------------------- /benchmark8051/verif/hex/fib.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/hex/fib.hex -------------------------------------------------------------------------------- /benchmark8051/verif/hex/gcd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/hex/gcd.hex -------------------------------------------------------------------------------- /benchmark8051/verif/hex/sort.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/hex/sort.hex -------------------------------------------------------------------------------- /benchmark8051/verif/hex/xram.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/hex/xram.hex -------------------------------------------------------------------------------- /benchmark8051/verif/sim/dat/oc8051_eai.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/sim/dat/oc8051_eai.in -------------------------------------------------------------------------------- /benchmark8051/verif/sim/dat/oc8051_eax.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/sim/dat/oc8051_eax.in -------------------------------------------------------------------------------- /benchmark8051/verif/sim/filelist_top.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/sim/filelist_top.f -------------------------------------------------------------------------------- /benchmark8051/verif/sim/run_nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/sim/run_nc -------------------------------------------------------------------------------- /benchmark8051/verif/sim/run_vcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/sim/run_vcs -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_fpga_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tb/oc8051_fpga_tb.v -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_serial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tb/oc8051_serial.v -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tb/oc8051_tb.v -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_timescale.v: -------------------------------------------------------------------------------- 1 | 2 | 3 | `timescale 1ns/10ps 4 | -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_uart_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tb/oc8051_uart_test.v -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_xram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tb/oc8051_xram.v -------------------------------------------------------------------------------- /benchmark8051/verif/tb/oc8051_xrom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tb/oc8051_xrom.v -------------------------------------------------------------------------------- /benchmark8051/verif/tests/dat/cast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tests/dat/cast.dat -------------------------------------------------------------------------------- /benchmark8051/verif/tests/dat/divmul.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tests/dat/divmul.dat -------------------------------------------------------------------------------- /benchmark8051/verif/tests/dat/fib.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tests/dat/fib.dat -------------------------------------------------------------------------------- /benchmark8051/verif/tests/dat/gcd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tests/dat/gcd.dat -------------------------------------------------------------------------------- /benchmark8051/verif/tests/dat/sort.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tests/dat/sort.dat -------------------------------------------------------------------------------- /benchmark8051/verif/tests/dat/xram.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/benchmark8051/verif/tests/dat/xram.dat -------------------------------------------------------------------------------- /doc/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/doc/read.me -------------------------------------------------------------------------------- /env/setup.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/env/setup.csh -------------------------------------------------------------------------------- /fpga/altera/summary/turbo8051.fit.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/fpga/altera/summary/turbo8051.fit.summary -------------------------------------------------------------------------------- /fpga/altera/summary/turbo8051.map.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/fpga/altera/summary/turbo8051.map.summary -------------------------------------------------------------------------------- /fpga/altera/summary/turbo8051.tan.summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/fpga/altera/summary/turbo8051.tan.summary -------------------------------------------------------------------------------- /fpga/altera/turbo8051.qpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/fpga/altera/turbo8051.qpf -------------------------------------------------------------------------------- /fpga/altera/turbo8051.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/fpga/altera/turbo8051.qsf -------------------------------------------------------------------------------- /models/altera/altera_stargate_pll.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/models/altera/altera_stargate_pll.v -------------------------------------------------------------------------------- /rtl/8051/filelist_top.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/filelist_top.f -------------------------------------------------------------------------------- /rtl/8051/make_verilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/make_verilog -------------------------------------------------------------------------------- /rtl/8051/oc8051_acc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_acc.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_alu.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_alu_src_sel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_alu_src_sel.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_alu_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_alu_test.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_b_register.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_b_register.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_cache_ram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_cache_ram.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_comp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_comp.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_cy_select.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_cy_select.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_decoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_decoder.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_divide.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_divide.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_dptr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_dptr.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_icache.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_icache.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_indi_addr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_indi_addr.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_int.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_int.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_memory_interface.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_memory_interface.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_multiply.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_multiply.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_ports.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_ports.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_psw.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_psw.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_ram_256x8_two_bist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_ram_256x8_two_bist.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_ram_64x32_dual_bist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_ram_64x32_dual_bist.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_ram_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_ram_top.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_rom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_rom.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_sfr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_sfr.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_sp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_sp.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_tc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_tc.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_tc2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_tc2.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_timescale.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns/10ps 2 | -------------------------------------------------------------------------------- /rtl/8051/oc8051_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_top.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_uart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_uart.v -------------------------------------------------------------------------------- /rtl/8051/oc8051_wb_iinterface.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/oc8051_wb_iinterface.v -------------------------------------------------------------------------------- /rtl/8051/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/8051/read.me -------------------------------------------------------------------------------- /rtl/clkgen/clkgen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/clkgen/clkgen.v -------------------------------------------------------------------------------- /rtl/core/core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/core/core.v -------------------------------------------------------------------------------- /rtl/core/filelist_core.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/core/filelist_core.f -------------------------------------------------------------------------------- /rtl/defs/oc8051_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/defs/oc8051_defines.v -------------------------------------------------------------------------------- /rtl/gmac/crc32/g_rx_crc32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/crc32/g_rx_crc32.v -------------------------------------------------------------------------------- /rtl/gmac/crc32/g_tx_crc32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/crc32/g_tx_crc32.v -------------------------------------------------------------------------------- /rtl/gmac/ctrl/eth_parser.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/ctrl/eth_parser.v -------------------------------------------------------------------------------- /rtl/gmac/mac/byte_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/byte_reg.v -------------------------------------------------------------------------------- /rtl/gmac/mac/dble_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/dble_reg.v -------------------------------------------------------------------------------- /rtl/gmac/mac/filelist_mac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/filelist_mac.f -------------------------------------------------------------------------------- /rtl/gmac/mac/g_cfg_mgmt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_cfg_mgmt.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_deferral.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_deferral.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_deferral_rx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_deferral_rx.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_mac_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_mac_core.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_md_intf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_md_intf.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_mii_intf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_mii_intf.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_rx_fsm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_rx_fsm.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_rx_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_rx_top.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_tx_fsm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_tx_fsm.v -------------------------------------------------------------------------------- /rtl/gmac/mac/g_tx_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/g_tx_top.v -------------------------------------------------------------------------------- /rtl/gmac/mac/s2f_sync.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/mac/s2f_sync.v -------------------------------------------------------------------------------- /rtl/gmac/top/filelist_top.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/top/filelist_top.f -------------------------------------------------------------------------------- /rtl/gmac/top/g_mac_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/gmac/top/g_mac_top.v -------------------------------------------------------------------------------- /rtl/lib/async_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/async_fifo.v -------------------------------------------------------------------------------- /rtl/lib/clk_ctl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/clk_ctl.v -------------------------------------------------------------------------------- /rtl/lib/dble_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/dble_reg.v -------------------------------------------------------------------------------- /rtl/lib/double_sync_high.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/double_sync_high.v -------------------------------------------------------------------------------- /rtl/lib/double_sync_low.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/double_sync_low.v -------------------------------------------------------------------------------- /rtl/lib/g_dpath_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/g_dpath_ctrl.v -------------------------------------------------------------------------------- /rtl/lib/registers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/registers.v -------------------------------------------------------------------------------- /rtl/lib/sfifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/sfifo.v -------------------------------------------------------------------------------- /rtl/lib/stat_counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/stat_counter.v -------------------------------------------------------------------------------- /rtl/lib/toggle_sync.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/toggle_sync.v -------------------------------------------------------------------------------- /rtl/lib/wb_crossbar.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/wb_crossbar.v -------------------------------------------------------------------------------- /rtl/lib/wb_interface.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/wb_interface.v -------------------------------------------------------------------------------- /rtl/lib/wb_rd_mem2mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/wb_rd_mem2mem.v -------------------------------------------------------------------------------- /rtl/lib/wb_wr_mem2mem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/lib/wb_wr_mem2mem.v -------------------------------------------------------------------------------- /rtl/spi/filelist_spi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/spi/filelist_spi.f -------------------------------------------------------------------------------- /rtl/spi/spi_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/spi/spi_cfg.v -------------------------------------------------------------------------------- /rtl/spi/spi_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/spi/spi_core.v -------------------------------------------------------------------------------- /rtl/spi/spi_ctl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/spi/spi_ctl.v -------------------------------------------------------------------------------- /rtl/spi/spi_if.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/spi/spi_if.v -------------------------------------------------------------------------------- /rtl/uart/filelist_uart.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/uart/filelist_uart.f -------------------------------------------------------------------------------- /rtl/uart/uart_cfg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/uart/uart_cfg.v -------------------------------------------------------------------------------- /rtl/uart/uart_core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/uart/uart_core.v -------------------------------------------------------------------------------- /rtl/uart/uart_rxfsm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/uart/uart_rxfsm.v -------------------------------------------------------------------------------- /rtl/uart/uart_txfsm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/rtl/uart/uart_txfsm.v -------------------------------------------------------------------------------- /verif/agents/ethernet/filelist_tb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/filelist_tb.f -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_eth_conf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_eth_conf.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_eth_defs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_eth_defs.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_eth_objs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_eth_objs.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_eth_pktgn.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_eth_pktgn.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_eth_tasks.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_eth_tasks.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_eth_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_eth_top.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_mii.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_mii.v -------------------------------------------------------------------------------- /verif/agents/ethernet/tb_rmii.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/ethernet/tb_rmii.v -------------------------------------------------------------------------------- /verif/agents/spi/atmel/AT45DBXXX_v2.0.3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/atmel/AT45DBXXX_v2.0.3.v -------------------------------------------------------------------------------- /verif/agents/spi/spi_tasks.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/spi_tasks.v -------------------------------------------------------------------------------- /verif/agents/spi/st_m25p20a/M25P20.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/st_m25p20a/M25P20.v -------------------------------------------------------------------------------- /verif/agents/spi/st_m25p20a/acdc_check.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/st_m25p20a/acdc_check.v -------------------------------------------------------------------------------- /verif/agents/spi/st_m25p20a/internal_logic.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/st_m25p20a/internal_logic.v -------------------------------------------------------------------------------- /verif/agents/spi/st_m25p20a/memory_access.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/st_m25p20a/memory_access.v -------------------------------------------------------------------------------- /verif/agents/spi/st_m25p20a/parameter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/st_m25p20a/parameter.v -------------------------------------------------------------------------------- /verif/agents/spi/st_m25p20a/parameter_fast.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/spi/st_m25p20a/parameter_fast.v -------------------------------------------------------------------------------- /verif/agents/uart/uart_agent.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/agents/uart/uart_agent.v -------------------------------------------------------------------------------- /verif/defs/tb_defines.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/defs/tb_defines.v -------------------------------------------------------------------------------- /verif/lib/tb_glbl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/lib/tb_glbl.v -------------------------------------------------------------------------------- /verif/log/complie.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/complie.log -------------------------------------------------------------------------------- /verif/log/ext_cast.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/ext_cast.log -------------------------------------------------------------------------------- /verif/log/ext_divmul.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/ext_divmul.log -------------------------------------------------------------------------------- /verif/log/ext_fib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/ext_fib.log -------------------------------------------------------------------------------- /verif/log/ext_gcd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/ext_gcd.log -------------------------------------------------------------------------------- /verif/log/ext_sort.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/ext_sort.log -------------------------------------------------------------------------------- /verif/log/ext_xram.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/ext_xram.log -------------------------------------------------------------------------------- /verif/log/gmac_test_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/gmac_test_1.log -------------------------------------------------------------------------------- /verif/log/gmac_test_2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/gmac_test_2.log -------------------------------------------------------------------------------- /verif/log/int_cast.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/int_cast.log -------------------------------------------------------------------------------- /verif/log/int_divmul.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/int_divmul.log -------------------------------------------------------------------------------- /verif/log/int_fib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/int_fib.log -------------------------------------------------------------------------------- /verif/log/int_gcd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/int_gcd.log -------------------------------------------------------------------------------- /verif/log/int_sort.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/int_sort.log -------------------------------------------------------------------------------- /verif/log/int_xram.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/int_xram.log -------------------------------------------------------------------------------- /verif/log/run_modelsim.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/run_modelsim.log -------------------------------------------------------------------------------- /verif/log/spi_test_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/spi_test_1.log -------------------------------------------------------------------------------- /verif/log/uart_test_1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/uart_test_1.log -------------------------------------------------------------------------------- /verif/log/x_cast.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/x_cast.log -------------------------------------------------------------------------------- /verif/log/x_divmul.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/x_divmul.log -------------------------------------------------------------------------------- /verif/log/x_fib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/x_fib.log -------------------------------------------------------------------------------- /verif/log/x_gcd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/x_gcd.log -------------------------------------------------------------------------------- /verif/log/x_sort.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/x_sort.log -------------------------------------------------------------------------------- /verif/log/x_xram.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/log/x_xram.log -------------------------------------------------------------------------------- /verif/model/oc8051_xram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/model/oc8051_xram.v -------------------------------------------------------------------------------- /verif/model/oc8051_xrom.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/model/oc8051_xrom.v -------------------------------------------------------------------------------- /verif/run/compile.modelsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/compile.modelsim -------------------------------------------------------------------------------- /verif/run/dat/gmac_loopback.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/dat/gmac_loopback.dat -------------------------------------------------------------------------------- /verif/run/dat/oc8051_xrom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/dat/oc8051_xrom.in -------------------------------------------------------------------------------- /verif/run/dat/webserver.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/dat/webserver.dat -------------------------------------------------------------------------------- /verif/run/filelist_rtl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/filelist_rtl.f -------------------------------------------------------------------------------- /verif/run/filelist_tb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/filelist_tb.f -------------------------------------------------------------------------------- /verif/run/filelist_top.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/filelist_top.f -------------------------------------------------------------------------------- /verif/run/run.do: -------------------------------------------------------------------------------- 1 | run -all 2 | -------------------------------------------------------------------------------- /verif/run/run_modelsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/run_modelsim -------------------------------------------------------------------------------- /verif/run/run_vcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/run_vcs -------------------------------------------------------------------------------- /verif/run/run_vlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/run/run_vlog -------------------------------------------------------------------------------- /verif/run/time_scale.v: -------------------------------------------------------------------------------- 1 | 2 | `timescale 1ns/1ps 3 | -------------------------------------------------------------------------------- /verif/sw/C/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/cast.c -------------------------------------------------------------------------------- /verif/sw/C/divmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/divmul.c -------------------------------------------------------------------------------- /verif/sw/C/fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/fib.c -------------------------------------------------------------------------------- /verif/sw/C/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/gcd.c -------------------------------------------------------------------------------- /verif/sw/C/gmac_loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/gmac_loopback.c -------------------------------------------------------------------------------- /verif/sw/C/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/run -------------------------------------------------------------------------------- /verif/sw/C/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/sort.c -------------------------------------------------------------------------------- /verif/sw/C/xram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/C/xram.c -------------------------------------------------------------------------------- /verif/sw/bin/oc8051_Rom_Maker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/bin/oc8051_Rom_Maker.exe -------------------------------------------------------------------------------- /verif/sw/bin/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/bin/read.me -------------------------------------------------------------------------------- /verif/sw/hex/cast.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/hex/cast.hex -------------------------------------------------------------------------------- /verif/sw/hex/divmul.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/hex/divmul.hex -------------------------------------------------------------------------------- /verif/sw/hex/fib.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/hex/fib.hex -------------------------------------------------------------------------------- /verif/sw/hex/gcd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/hex/gcd.hex -------------------------------------------------------------------------------- /verif/sw/hex/sort.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/hex/sort.hex -------------------------------------------------------------------------------- /verif/sw/hex/xram.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/hex/xram.hex -------------------------------------------------------------------------------- /verif/sw/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/read.me -------------------------------------------------------------------------------- /verif/sw/sdcc/sdcc-20100629-5862-setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/sw/sdcc/sdcc-20100629-5862-setup.exe -------------------------------------------------------------------------------- /verif/tb/tb_tasks.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/tb/tb_tasks.v -------------------------------------------------------------------------------- /verif/tb/tb_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/tb/tb_top.v -------------------------------------------------------------------------------- /verif/tb/timescale_1ns_1ns.v: -------------------------------------------------------------------------------- 1 | `timescale 1ns/1ns 2 | -------------------------------------------------------------------------------- /verif/testcase/dat/cast.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/cast.dat -------------------------------------------------------------------------------- /verif/testcase/dat/divmul.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/divmul.dat -------------------------------------------------------------------------------- /verif/testcase/dat/fib.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/fib.dat -------------------------------------------------------------------------------- /verif/testcase/dat/gcd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/gcd.dat -------------------------------------------------------------------------------- /verif/testcase/dat/gmac_loopback.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/gmac_loopback.dat -------------------------------------------------------------------------------- /verif/testcase/dat/sort.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/sort.dat -------------------------------------------------------------------------------- /verif/testcase/dat/webserver.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/webserver.dat -------------------------------------------------------------------------------- /verif/testcase/dat/xram.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/dat/xram.dat -------------------------------------------------------------------------------- /verif/testcase/gmac_test1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/gmac_test1.v -------------------------------------------------------------------------------- /verif/testcase/gmac_test2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/gmac_test2.v -------------------------------------------------------------------------------- /verif/testcase/spi_test1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/spi_test1.v -------------------------------------------------------------------------------- /verif/testcase/uart_test1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/uart_test1.v -------------------------------------------------------------------------------- /verif/testcase/webserver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freecores/turbo8051/HEAD/verif/testcase/webserver.v --------------------------------------------------------------------------------