├── 832a ├── 832a.c ├── 832a.h ├── 832d.c ├── 832d_ui.c ├── 832defs.c ├── 832l.c ├── 832opcodes.h ├── 832util.c ├── 832util.h ├── Makefile ├── Makefile.vbcc_amiga ├── codebuffer.c ├── codebuffer.h ├── equates.c ├── equates.h ├── executable.c ├── executable.h ├── expressions.c ├── expressions.h ├── exprtest.c ├── hello.S ├── mapfile.c ├── mapfile.h ├── objectfile.c ├── objectfile.h ├── onchipdebug.c ├── peephole.c ├── peephole.h ├── posix.c ├── premain.S ├── section.c ├── section.h ├── sectionmap.c ├── sectionmap.h ├── start.S ├── startthread2.S ├── symbol.c ├── symbol.h ├── test.S └── uart.S ├── 832emu ├── 832e.cpp ├── 832opcodes.h ├── Makefile ├── binaryblob.h ├── config.h ├── debug.cpp ├── debug.h ├── hackstream.h ├── pathsupport.cpp ├── pathsupport.h ├── searchpath.h ├── util.cpp └── util.h ├── 832ocd ├── 832ocd.c ├── 832ocd.h ├── 832ocd_connection.c ├── 832ocd_connection.h ├── Makefile ├── frontend.c ├── frontend.h ├── script.c └── script.h ├── COPYING ├── Makefile ├── README.md ├── RTL ├── altera │ ├── debug_bridge_jtag.vhd │ ├── debug_bridge_jtag.vhd.bak │ ├── debug_fifo_altera.cmp │ ├── debug_fifo_altera.qip │ ├── debug_fifo_altera.vhd │ ├── debug_virtualjtag.cmp │ ├── debug_virtualjtag.qip │ └── debug_virtualjtag.vhd ├── debug_bridge_jtag.files ├── debug_bridge_jtag.qip ├── debug_bridge_testbench.vhd ├── debug_fifo.vhd ├── eightthirtytwo.files ├── eightthirtytwo.qip ├── eightthirtytwo_aligner.vhd ├── eightthirtytwo_aligner_le.vhd ├── eightthirtytwo_alu.vhd ├── eightthirtytwo_cpu.vhd ├── eightthirtytwo_debug.vhd ├── eightthirtytwo_decode.vhd ├── eightthirtytwo_fetchloadstore.vhd ├── eightthirtytwo_hazard.vhd ├── eightthirtytwo_multicycles.sdc ├── eightthirtytwo_pkg.vhd ├── eightthirtytwo_shifter.vhd ├── lattice_yosys │ ├── debug_bridge_jtag.vhd │ └── debug_virtualjtag_ECP5.vhd ├── sim_ghdl │ ├── debug_bridge_jtag.vhd │ └── debug_virtualjtag_sim_ghdl.vhd └── xilinx │ ├── debug_bridge_jtag.vhd │ ├── debug_virtualjtag_Artix7.vhd │ ├── debug_virtualjtag_Kintex7.vhd │ ├── debug_virtualjtag_Spartan3.vhd │ ├── debug_virtualjtag_Spartan6.vhd │ └── debug_virtualjtag_xilinx.vhd ├── Specs └── 832 Instructions_0.3.ods ├── check_os.mk ├── include ├── ctype.h ├── dualthread.h ├── inttypes.h ├── limits.h ├── printf.h ├── setjmp.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── string.h ├── string_asm.h └── sys │ └── types.h ├── lib832 ├── COPYING.LESSER ├── Makefile ├── abort.c ├── absolutestack.S ├── division.S ├── dualthread.S ├── helloworld.c ├── hexdump.c ├── hexdump.h ├── premain.S ├── premain_dualthread.S ├── premain_tiny.S ├── setjmp.S ├── small_printf.c ├── small_printf.h ├── start.S ├── string.S ├── string_c.c ├── stringstubs.c ├── tiny_printf.c ├── tiny_printf.h ├── uart.c └── uart.h ├── romgen ├── Makefile ├── rom_epilogue_byte.vhd ├── rom_epilogue_dualport_byte.vhd ├── rom_epilogue_dualport_word.vhd ├── rom_epilogue_slice.vhd ├── rom_epilogue_word.vhd ├── rom_prologue_byte.vhd ├── rom_prologue_dualport_byte.vhd ├── rom_prologue_dualport_word.vhd ├── rom_prologue_interleaved.vhd ├── rom_prologue_slice.vhd ├── rom_prologue_word.vhd └── romgen.c ├── tcl ├── 832bridge.tcl ├── 832bridge_openocd_lattice.tcl ├── vjtagutil.tcl └── vjtagutil_xilinx.tcl ├── vbcc ├── dhrystone │ ├── Makefile │ ├── dhry.h │ ├── dhry_1.c │ ├── dhry_2.c │ ├── dhrystone.gtkw │ ├── dhrystone_tb.vhd │ ├── ldscript.ld │ ├── tb.vhd │ ├── timer.h │ └── waveopt ├── dhrystone_dual │ ├── Makefile │ ├── dhry.h │ ├── dhry_1.c │ ├── dhry_2.c │ ├── dhry_3.c │ ├── dhry_4.c │ ├── dhrystone_tb.vhd │ ├── dhrytest.c │ ├── premain_dual.S │ ├── tb.vhd │ ├── timer.h │ └── waveopt ├── machines │ └── 832 │ │ ├── addressingmodes.c │ │ ├── dt.c │ │ ├── dt.h │ │ ├── inlinememcpy.c │ │ ├── libcalls.c │ │ ├── machine.c │ │ ├── machine.dt │ │ ├── machine.h │ │ └── tempregs.c └── test │ ├── Makefile │ ├── amtest.c │ ├── argtest.c │ ├── comparisons.c │ ├── copytest.c │ ├── divtest.c │ ├── fptrtest.c │ ├── helloworld.c │ ├── helloworld_byte.c │ ├── ldscript.ld │ ├── stacktest.c │ ├── strcpytest.c │ ├── tb.vhd │ ├── vatest.c │ └── waveopt ├── vbcc0_9g.tar.gz ├── vbcc_09g_volatilefix.patch └── vbcc_quickstart ├── dt.c └── dt.h /832a/832a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832a.c -------------------------------------------------------------------------------- /832a/832a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832a.h -------------------------------------------------------------------------------- /832a/832d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832d.c -------------------------------------------------------------------------------- /832a/832d_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832d_ui.c -------------------------------------------------------------------------------- /832a/832defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832defs.c -------------------------------------------------------------------------------- /832a/832l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832l.c -------------------------------------------------------------------------------- /832a/832opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832opcodes.h -------------------------------------------------------------------------------- /832a/832util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832util.c -------------------------------------------------------------------------------- /832a/832util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/832util.h -------------------------------------------------------------------------------- /832a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/Makefile -------------------------------------------------------------------------------- /832a/Makefile.vbcc_amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/Makefile.vbcc_amiga -------------------------------------------------------------------------------- /832a/codebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/codebuffer.c -------------------------------------------------------------------------------- /832a/codebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/codebuffer.h -------------------------------------------------------------------------------- /832a/equates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/equates.c -------------------------------------------------------------------------------- /832a/equates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/equates.h -------------------------------------------------------------------------------- /832a/executable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/executable.c -------------------------------------------------------------------------------- /832a/executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/executable.h -------------------------------------------------------------------------------- /832a/expressions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/expressions.c -------------------------------------------------------------------------------- /832a/expressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/expressions.h -------------------------------------------------------------------------------- /832a/exprtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/exprtest.c -------------------------------------------------------------------------------- /832a/hello.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/hello.S -------------------------------------------------------------------------------- /832a/mapfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/mapfile.c -------------------------------------------------------------------------------- /832a/mapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/mapfile.h -------------------------------------------------------------------------------- /832a/objectfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/objectfile.c -------------------------------------------------------------------------------- /832a/objectfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/objectfile.h -------------------------------------------------------------------------------- /832a/onchipdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/onchipdebug.c -------------------------------------------------------------------------------- /832a/peephole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/peephole.c -------------------------------------------------------------------------------- /832a/peephole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/peephole.h -------------------------------------------------------------------------------- /832a/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/posix.c -------------------------------------------------------------------------------- /832a/premain.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/premain.S -------------------------------------------------------------------------------- /832a/section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/section.c -------------------------------------------------------------------------------- /832a/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/section.h -------------------------------------------------------------------------------- /832a/sectionmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/sectionmap.c -------------------------------------------------------------------------------- /832a/sectionmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/sectionmap.h -------------------------------------------------------------------------------- /832a/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/start.S -------------------------------------------------------------------------------- /832a/startthread2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/startthread2.S -------------------------------------------------------------------------------- /832a/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/symbol.c -------------------------------------------------------------------------------- /832a/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/symbol.h -------------------------------------------------------------------------------- /832a/test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/test.S -------------------------------------------------------------------------------- /832a/uart.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832a/uart.S -------------------------------------------------------------------------------- /832emu/832e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/832e.cpp -------------------------------------------------------------------------------- /832emu/832opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/832opcodes.h -------------------------------------------------------------------------------- /832emu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/Makefile -------------------------------------------------------------------------------- /832emu/binaryblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/binaryblob.h -------------------------------------------------------------------------------- /832emu/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/config.h -------------------------------------------------------------------------------- /832emu/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/debug.cpp -------------------------------------------------------------------------------- /832emu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/debug.h -------------------------------------------------------------------------------- /832emu/hackstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/hackstream.h -------------------------------------------------------------------------------- /832emu/pathsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/pathsupport.cpp -------------------------------------------------------------------------------- /832emu/pathsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/pathsupport.h -------------------------------------------------------------------------------- /832emu/searchpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/searchpath.h -------------------------------------------------------------------------------- /832emu/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/util.cpp -------------------------------------------------------------------------------- /832emu/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832emu/util.h -------------------------------------------------------------------------------- /832ocd/832ocd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/832ocd.c -------------------------------------------------------------------------------- /832ocd/832ocd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/832ocd.h -------------------------------------------------------------------------------- /832ocd/832ocd_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/832ocd_connection.c -------------------------------------------------------------------------------- /832ocd/832ocd_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/832ocd_connection.h -------------------------------------------------------------------------------- /832ocd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/Makefile -------------------------------------------------------------------------------- /832ocd/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/frontend.c -------------------------------------------------------------------------------- /832ocd/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/frontend.h -------------------------------------------------------------------------------- /832ocd/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/script.c -------------------------------------------------------------------------------- /832ocd/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/832ocd/script.h -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/README.md -------------------------------------------------------------------------------- /RTL/altera/debug_bridge_jtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_bridge_jtag.vhd -------------------------------------------------------------------------------- /RTL/altera/debug_bridge_jtag.vhd.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_bridge_jtag.vhd.bak -------------------------------------------------------------------------------- /RTL/altera/debug_fifo_altera.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_fifo_altera.cmp -------------------------------------------------------------------------------- /RTL/altera/debug_fifo_altera.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_fifo_altera.qip -------------------------------------------------------------------------------- /RTL/altera/debug_fifo_altera.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_fifo_altera.vhd -------------------------------------------------------------------------------- /RTL/altera/debug_virtualjtag.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_virtualjtag.cmp -------------------------------------------------------------------------------- /RTL/altera/debug_virtualjtag.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_virtualjtag.qip -------------------------------------------------------------------------------- /RTL/altera/debug_virtualjtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/altera/debug_virtualjtag.vhd -------------------------------------------------------------------------------- /RTL/debug_bridge_jtag.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/debug_bridge_jtag.files -------------------------------------------------------------------------------- /RTL/debug_bridge_jtag.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/debug_bridge_jtag.qip -------------------------------------------------------------------------------- /RTL/debug_bridge_testbench.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/debug_bridge_testbench.vhd -------------------------------------------------------------------------------- /RTL/debug_fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/debug_fifo.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo.files -------------------------------------------------------------------------------- /RTL/eightthirtytwo.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo.qip -------------------------------------------------------------------------------- /RTL/eightthirtytwo_aligner.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_aligner.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_aligner_le.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_aligner_le.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_alu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_alu.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_cpu.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_cpu.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_debug.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_debug.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_decode.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_decode.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_fetchloadstore.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_fetchloadstore.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_hazard.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_hazard.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_multicycles.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_multicycles.sdc -------------------------------------------------------------------------------- /RTL/eightthirtytwo_pkg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_pkg.vhd -------------------------------------------------------------------------------- /RTL/eightthirtytwo_shifter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/eightthirtytwo_shifter.vhd -------------------------------------------------------------------------------- /RTL/lattice_yosys/debug_bridge_jtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/lattice_yosys/debug_bridge_jtag.vhd -------------------------------------------------------------------------------- /RTL/lattice_yosys/debug_virtualjtag_ECP5.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/lattice_yosys/debug_virtualjtag_ECP5.vhd -------------------------------------------------------------------------------- /RTL/sim_ghdl/debug_bridge_jtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/sim_ghdl/debug_bridge_jtag.vhd -------------------------------------------------------------------------------- /RTL/sim_ghdl/debug_virtualjtag_sim_ghdl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/sim_ghdl/debug_virtualjtag_sim_ghdl.vhd -------------------------------------------------------------------------------- /RTL/xilinx/debug_bridge_jtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/xilinx/debug_bridge_jtag.vhd -------------------------------------------------------------------------------- /RTL/xilinx/debug_virtualjtag_Artix7.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/xilinx/debug_virtualjtag_Artix7.vhd -------------------------------------------------------------------------------- /RTL/xilinx/debug_virtualjtag_Kintex7.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/xilinx/debug_virtualjtag_Kintex7.vhd -------------------------------------------------------------------------------- /RTL/xilinx/debug_virtualjtag_Spartan3.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/xilinx/debug_virtualjtag_Spartan3.vhd -------------------------------------------------------------------------------- /RTL/xilinx/debug_virtualjtag_Spartan6.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/xilinx/debug_virtualjtag_Spartan6.vhd -------------------------------------------------------------------------------- /RTL/xilinx/debug_virtualjtag_xilinx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/RTL/xilinx/debug_virtualjtag_xilinx.vhd -------------------------------------------------------------------------------- /Specs/832 Instructions_0.3.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/Specs/832 Instructions_0.3.ods -------------------------------------------------------------------------------- /check_os.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/check_os.mk -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/dualthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/dualthread.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/printf.h -------------------------------------------------------------------------------- /include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/setjmp.h -------------------------------------------------------------------------------- /include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/stdarg.h -------------------------------------------------------------------------------- /include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/stdbool.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/string.h -------------------------------------------------------------------------------- /include/string_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/string_asm.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /lib832/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/COPYING.LESSER -------------------------------------------------------------------------------- /lib832/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/Makefile -------------------------------------------------------------------------------- /lib832/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/abort.c -------------------------------------------------------------------------------- /lib832/absolutestack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/absolutestack.S -------------------------------------------------------------------------------- /lib832/division.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/division.S -------------------------------------------------------------------------------- /lib832/dualthread.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/dualthread.S -------------------------------------------------------------------------------- /lib832/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/helloworld.c -------------------------------------------------------------------------------- /lib832/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/hexdump.c -------------------------------------------------------------------------------- /lib832/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/hexdump.h -------------------------------------------------------------------------------- /lib832/premain.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/premain.S -------------------------------------------------------------------------------- /lib832/premain_dualthread.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/premain_dualthread.S -------------------------------------------------------------------------------- /lib832/premain_tiny.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/premain_tiny.S -------------------------------------------------------------------------------- /lib832/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/setjmp.S -------------------------------------------------------------------------------- /lib832/small_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/small_printf.c -------------------------------------------------------------------------------- /lib832/small_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/small_printf.h -------------------------------------------------------------------------------- /lib832/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/start.S -------------------------------------------------------------------------------- /lib832/string.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/string.S -------------------------------------------------------------------------------- /lib832/string_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/string_c.c -------------------------------------------------------------------------------- /lib832/stringstubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/stringstubs.c -------------------------------------------------------------------------------- /lib832/tiny_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/tiny_printf.c -------------------------------------------------------------------------------- /lib832/tiny_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/tiny_printf.h -------------------------------------------------------------------------------- /lib832/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/uart.c -------------------------------------------------------------------------------- /lib832/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/lib832/uart.h -------------------------------------------------------------------------------- /romgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/Makefile -------------------------------------------------------------------------------- /romgen/rom_epilogue_byte.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_epilogue_byte.vhd -------------------------------------------------------------------------------- /romgen/rom_epilogue_dualport_byte.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_epilogue_dualport_byte.vhd -------------------------------------------------------------------------------- /romgen/rom_epilogue_dualport_word.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_epilogue_dualport_word.vhd -------------------------------------------------------------------------------- /romgen/rom_epilogue_slice.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_epilogue_slice.vhd -------------------------------------------------------------------------------- /romgen/rom_epilogue_word.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_epilogue_word.vhd -------------------------------------------------------------------------------- /romgen/rom_prologue_byte.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_prologue_byte.vhd -------------------------------------------------------------------------------- /romgen/rom_prologue_dualport_byte.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_prologue_dualport_byte.vhd -------------------------------------------------------------------------------- /romgen/rom_prologue_dualport_word.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_prologue_dualport_word.vhd -------------------------------------------------------------------------------- /romgen/rom_prologue_interleaved.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_prologue_interleaved.vhd -------------------------------------------------------------------------------- /romgen/rom_prologue_slice.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_prologue_slice.vhd -------------------------------------------------------------------------------- /romgen/rom_prologue_word.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/rom_prologue_word.vhd -------------------------------------------------------------------------------- /romgen/romgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/romgen/romgen.c -------------------------------------------------------------------------------- /tcl/832bridge.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/tcl/832bridge.tcl -------------------------------------------------------------------------------- /tcl/832bridge_openocd_lattice.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/tcl/832bridge_openocd_lattice.tcl -------------------------------------------------------------------------------- /tcl/vjtagutil.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/tcl/vjtagutil.tcl -------------------------------------------------------------------------------- /tcl/vjtagutil_xilinx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/tcl/vjtagutil_xilinx.tcl -------------------------------------------------------------------------------- /vbcc/dhrystone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/Makefile -------------------------------------------------------------------------------- /vbcc/dhrystone/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/dhry.h -------------------------------------------------------------------------------- /vbcc/dhrystone/dhry_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/dhry_1.c -------------------------------------------------------------------------------- /vbcc/dhrystone/dhry_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/dhry_2.c -------------------------------------------------------------------------------- /vbcc/dhrystone/dhrystone.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/dhrystone.gtkw -------------------------------------------------------------------------------- /vbcc/dhrystone/dhrystone_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/dhrystone_tb.vhd -------------------------------------------------------------------------------- /vbcc/dhrystone/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/ldscript.ld -------------------------------------------------------------------------------- /vbcc/dhrystone/tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/tb.vhd -------------------------------------------------------------------------------- /vbcc/dhrystone/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/timer.h -------------------------------------------------------------------------------- /vbcc/dhrystone/waveopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone/waveopt -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/Makefile -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhry.h -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhry_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhry_1.c -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhry_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhry_2.c -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhry_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhry_3.c -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhry_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhry_4.c -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhrystone_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhrystone_tb.vhd -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/dhrytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/dhrytest.c -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/premain_dual.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/premain_dual.S -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/tb.vhd -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/timer.h -------------------------------------------------------------------------------- /vbcc/dhrystone_dual/waveopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/dhrystone_dual/waveopt -------------------------------------------------------------------------------- /vbcc/machines/832/addressingmodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/addressingmodes.c -------------------------------------------------------------------------------- /vbcc/machines/832/dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/dt.c -------------------------------------------------------------------------------- /vbcc/machines/832/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/dt.h -------------------------------------------------------------------------------- /vbcc/machines/832/inlinememcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/inlinememcpy.c -------------------------------------------------------------------------------- /vbcc/machines/832/libcalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/libcalls.c -------------------------------------------------------------------------------- /vbcc/machines/832/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/machine.c -------------------------------------------------------------------------------- /vbcc/machines/832/machine.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/machine.dt -------------------------------------------------------------------------------- /vbcc/machines/832/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/machine.h -------------------------------------------------------------------------------- /vbcc/machines/832/tempregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/machines/832/tempregs.c -------------------------------------------------------------------------------- /vbcc/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/Makefile -------------------------------------------------------------------------------- /vbcc/test/amtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/amtest.c -------------------------------------------------------------------------------- /vbcc/test/argtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/argtest.c -------------------------------------------------------------------------------- /vbcc/test/comparisons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/comparisons.c -------------------------------------------------------------------------------- /vbcc/test/copytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/copytest.c -------------------------------------------------------------------------------- /vbcc/test/divtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/divtest.c -------------------------------------------------------------------------------- /vbcc/test/fptrtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/fptrtest.c -------------------------------------------------------------------------------- /vbcc/test/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/helloworld.c -------------------------------------------------------------------------------- /vbcc/test/helloworld_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/helloworld_byte.c -------------------------------------------------------------------------------- /vbcc/test/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/ldscript.ld -------------------------------------------------------------------------------- /vbcc/test/stacktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/stacktest.c -------------------------------------------------------------------------------- /vbcc/test/strcpytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/strcpytest.c -------------------------------------------------------------------------------- /vbcc/test/tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/tb.vhd -------------------------------------------------------------------------------- /vbcc/test/vatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/vatest.c -------------------------------------------------------------------------------- /vbcc/test/waveopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc/test/waveopt -------------------------------------------------------------------------------- /vbcc0_9g.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc0_9g.tar.gz -------------------------------------------------------------------------------- /vbcc_09g_volatilefix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc_09g_volatilefix.patch -------------------------------------------------------------------------------- /vbcc_quickstart/dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc_quickstart/dt.c -------------------------------------------------------------------------------- /vbcc_quickstart/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinsonb5/EightThirtyTwo/HEAD/vbcc_quickstart/dt.h --------------------------------------------------------------------------------