├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── ChangeLog.old ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.gdb ├── SUPPORT ├── TODO ├── bootstrap ├── branches.txt ├── configure.ac ├── create-sigmap.py ├── delivery-check ├── delivery-check.conf.sample ├── doc ├── .gitignore ├── Makefile.am ├── README ├── _static │ └── simulavr.png ├── _templates │ ├── index.html │ ├── indexsidebar.html │ └── layout.html ├── build.rst ├── build_simple.rst ├── conf.py.in ├── config.texi.in ├── contents.rst ├── copyright.rst ├── download.rst ├── examples.rst ├── features.rst ├── formatcode.js ├── helpwanted.rst ├── intro.rst ├── license.rst ├── limitations.rst ├── log2html.py ├── manual.rst ├── platform.rst ├── report.css ├── simulavr.doxy ├── simulavr.texi ├── tclgui.rst ├── texinfo.tex ├── todo.rst ├── usage.rst ├── verilog.rst ├── version.texi └── web │ ├── .gitignore │ ├── Makefile.am │ ├── conf.py.in │ └── copy-to-cvs.sh ├── examples ├── .gitignore ├── ChangeLog ├── Makefile.am ├── anacomp │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── anacomp.tcl │ └── main.c ├── atmega128_timer │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── debugio.c │ ├── debugio.h │ └── main.c ├── atmega48 │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── anadata1 │ ├── anadata2 │ ├── anadata3 │ ├── atmega48.tcl │ ├── check.tcl.in │ ├── main.cpp │ └── spidata ├── atmel_key │ ├── .gitignore │ ├── Makefile.am │ ├── Notes.txt │ ├── README │ ├── StdDefs.c │ ├── StdDefs.h │ ├── atmel_key.tcl │ ├── kb.c │ ├── kb.h │ ├── main.c │ ├── pindefs.h │ ├── scancodes.h │ ├── serial.c │ └── serial.h ├── feedback │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── adc.c │ ├── debugio.c │ ├── debugio.h │ ├── defines.h │ ├── feedback.tcl │ ├── main.c │ ├── simfeedback.tcl.in │ ├── uart.c │ └── uart.h ├── gui.tcl.in ├── kbd.xbm ├── python │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── adc.c │ ├── adc.py │ ├── ex_pinout.c │ ├── ex_pinout.py │ ├── ex_utils.py │ ├── example.c │ ├── example.py │ ├── example_io.c │ ├── example_io.py │ ├── example_pin.py │ ├── multicore.c │ └── multicore.py ├── simple_ex1 │ ├── .gitignore │ ├── Makefile.am │ ├── README │ └── fred.c ├── simple_serial │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── main.c │ ├── serial.c │ └── serial.h ├── simulavr.tcl.in ├── spi │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── anadata │ ├── check.tcl.in │ ├── main.cpp │ ├── spi.tcl │ └── spidata ├── stdiodemo │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── checkdebug.gdb │ ├── checkdebug.tcl.in │ ├── defines.h │ ├── hd44780.c │ ├── hd44780.h │ ├── lcd.c │ ├── lcd.h │ ├── stdiodemo-setup.jpg │ ├── stdiodemo.c │ ├── stdiodemo.dox │ ├── stdiodemo.tcl │ ├── uart.c │ └── uart.h └── verilog │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── baretest.sav │ ├── baretest.v │ ├── csinglepincomm.c │ ├── csinglepincomm.h │ ├── left-unit.c │ ├── loop.c │ ├── loop.sav │ ├── loop.v │ ├── right-unit.s │ ├── singlepincomm.h │ ├── singlepincomm.s │ ├── spc.sav │ ├── spc.v │ ├── spi-waveforms.c │ ├── spi-waveforms.sav │ ├── spi-waveforms.v │ ├── spi.c │ ├── spi.sav │ ├── spi.v │ └── toggle.c ├── git-changelog.sh ├── m4 ├── .gitignore ├── README ├── ac_pkg_swig.m4 ├── avr_swig.m4 ├── avr_tcl.m4 ├── ax_prog_doxygen.m4 ├── ax_python_module.m4 ├── az_python.m4 ├── check_mingw.m4 ├── check_msys_zlib.m4 ├── check_winsock.m4 └── swig_enable_cxx.m4 ├── make_tarball ├── regress ├── .gitignore ├── Makefile.am ├── README ├── avrtest │ ├── .gitignore │ ├── Makefile.am │ ├── avrtest.cfg │ ├── avrtest.template │ ├── avrtest_help.c │ ├── avrtest_help.h │ ├── run_test.sh │ ├── test_abort.c │ ├── test_exit.c │ └── test_maxruntime.c ├── extinttest │ ├── .gitignore │ ├── Makefile.am │ ├── ext.cfg │ ├── ext.template │ ├── ext_int0.c │ ├── ext_int0.py │ ├── ext_int1.py │ ├── ext_int2.py │ ├── ext_pcint.c │ └── ext_pcint.py ├── gtest │ ├── .gitignore │ ├── Makefile.am │ ├── gtest-1.6.0 │ │ ├── CHANGES │ │ ├── CONTRIBUTORS │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ └── gtest-type-util.h │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── gtest_main.cpp │ ├── session_001 │ │ ├── avr_code.s │ │ └── unittest001.cpp │ ├── session_io_pin │ │ ├── tc1.s │ │ └── unittest_io_pin.cpp │ └── session_irq_check │ │ ├── check.s │ │ ├── tc1.s │ │ ├── tc2.s │ │ ├── tc3.s │ │ └── unittest_irq.cpp ├── modtest │ ├── .gitignore │ ├── Makefile.am │ ├── adc.c │ ├── adc.py │ ├── adc_diff.c │ ├── adc_diff.py │ ├── adc_diff_t25.c │ ├── adc_diff_t25.py │ ├── adc_fr.c │ ├── adc_fr.py │ ├── adc_gain.py │ ├── adc_int.c │ ├── adc_int.py │ ├── anacomp.c │ ├── anacomp.py │ ├── anacomp_int.c │ ├── anacomp_int.py │ ├── anacomp_mux.c │ ├── anacomp_mux.py │ ├── eeprom.c │ ├── eeprom.py │ ├── eeprom_int.c │ ├── eeprom_int.py │ ├── modtest.cfg │ ├── modtest.template │ ├── pin.py │ ├── port.c │ └── port.py ├── modules │ ├── Makefile.am │ ├── avr_target.py │ ├── base_test.py │ ├── create_makefile.py │ ├── gdb_rsp.py │ ├── registers.py │ ├── regress_unittest.py │ ├── simtestutil.py │ ├── vcdreader.py │ └── vcdtestutil.py ├── regress.py.in ├── tcl │ ├── .gitignore │ ├── Makefile.am │ ├── main.c │ └── tcl-test.tcl.in ├── test_opcodes │ ├── Makefile.am │ ├── TODO │ ├── test_ADC.py │ ├── test_ADD.py │ ├── test_ADIW.py │ ├── test_AND.py │ ├── test_ANDI.py │ ├── test_ASR.py │ ├── test_BCLR.py │ ├── test_BLD.py │ ├── test_BRBC.py │ ├── test_BRBS.py │ ├── test_BSET.py │ ├── test_BST.py │ ├── test_CALL.py │ ├── test_COM.py │ ├── test_CP.py │ ├── test_CPC.py │ ├── test_CPI.py │ ├── test_CPSE.py │ ├── test_DEC.py │ ├── test_EOR.py │ ├── test_ICALL.py │ ├── test_IJMP.py │ ├── test_INC.py │ ├── test_JMP.py │ ├── test_LDD_Y.py │ ├── test_LDD_Z.py │ ├── test_LDI.py │ ├── test_LDS.py │ ├── test_LD_X.py │ ├── test_LD_X_decr.py │ ├── test_LD_X_incr.py │ ├── test_LD_Y_decr.py │ ├── test_LD_Y_incr.py │ ├── test_LD_Z_decr.py │ ├── test_LD_Z_incr.py │ ├── test_LPM.py │ ├── test_LPM_Z.py │ ├── test_LPM_Z_incr.py │ ├── test_LSR.py │ ├── test_MOV.py │ ├── test_MOVW.py │ ├── test_MUL.py │ ├── test_MULS.py │ ├── test_MULSU.py │ ├── test_NEG.py │ ├── test_NOP.py │ ├── test_OR.py │ ├── test_ORI.py │ ├── test_POP.py │ ├── test_PUSH.py │ ├── test_RCALL.py │ ├── test_RET.py │ ├── test_RETI.py │ ├── test_RJMP.py │ ├── test_ROR.py │ ├── test_SBC.py │ ├── test_SBCI.py │ ├── test_SBIW.py │ ├── test_SBRC.py │ ├── test_SBRS.py │ ├── test_STD_Y.py │ ├── test_STD_Z.py │ ├── test_STS.py │ ├── test_ST_X.py │ ├── test_ST_X_decr.py │ ├── test_ST_X_incr.py │ ├── test_ST_Y_decr.py │ ├── test_ST_Y_incr.py │ ├── test_ST_Z_decr.py │ ├── test_ST_Z_incr.py │ ├── test_SUB.py │ ├── test_SUBI.py │ └── test_SWAP.py ├── timertest │ ├── .gitignore │ ├── Makefile.am │ ├── timer_16_extn.py │ ├── timer_16_extp.py │ ├── timer_16_icap_n.py │ ├── timer_16_icap_nc.py │ ├── timer_16_icap_p.py │ ├── timer_16_icap_pc.py │ ├── timer_16bit.c │ ├── timer_16bit_ext.c │ ├── timer_16bit_fastpwm.py │ ├── timer_16bit_fastpwm.sig │ ├── timer_16bit_icap.c │ ├── timer_16bit_normal.py │ ├── timer_16bit_normal.sig │ ├── timer_16bit_normal_90.sig │ ├── timer_8bit.c │ ├── timer_8bit_ctc.c │ ├── timer_8bit_ctc.py │ ├── timer_8bit_ctc.sig │ ├── timer_8bit_normal.py │ ├── timer_8bit_normal.sig │ ├── timer_8bit_normal_90.sig │ ├── timer_tX5_8bit.c │ ├── timer_tX5_8bit_ctc.py │ ├── timer_tX5_8bit_normal.py │ ├── timer_tX5_8bit_pwm.py │ ├── timertest.cfg │ └── timertest.template └── verilog │ ├── .gitignore │ ├── Makefile.am │ ├── baretest.v │ ├── toggle.c │ └── verilog-test.py ├── simulavr.vcproj ├── src ├── .gitignore ├── Makefile.am ├── adcpin.cpp ├── adcpin.h ├── application.cpp ├── application.h ├── at4433.cpp ├── at4433.h ├── at8515.cpp ├── at8515.h ├── at90canbase.cpp ├── at90canbase.h ├── atmega128.cpp ├── atmega128.h ├── atmega1284abase.cpp ├── atmega1284abase.h ├── atmega16_32.cpp ├── atmega16_32.h ├── atmega668base.cpp ├── atmega668base.h ├── atmega8.cpp ├── atmega8.h ├── attiny2313.cpp ├── attiny2313.h ├── attiny25_45_85.cpp ├── attiny25_45_85.h ├── avrdevice.cpp ├── avrdevice.h ├── avrdevice_impl.h ├── avrerror.cpp ├── avrerror.h ├── avrfactory.cpp ├── avrfactory.h ├── avrmalloc.cpp ├── avrmalloc.h ├── avrreadelf.cpp ├── avrreadelf.h ├── avrsignature.cpp ├── avrsignature.h ├── cmd │ ├── Makefile.am │ ├── dumpargs.cpp │ ├── dumpargs.h │ ├── gdb.h │ ├── gdbserver.cpp │ └── main.cpp ├── decoder.cpp ├── decoder.h ├── decoder_trace.cpp ├── elfio │ ├── AUTHORS │ ├── COPYING │ ├── README │ ├── VERSION │ └── elfio │ │ ├── elf_types.hpp │ │ ├── elfio.hpp │ │ ├── elfio_dump.hpp │ │ ├── elfio_dynamic.hpp │ │ ├── elfio_header.hpp │ │ ├── elfio_note.hpp │ │ ├── elfio_relocation.hpp │ │ ├── elfio_section.hpp │ │ ├── elfio_segment.hpp │ │ ├── elfio_strings.hpp │ │ ├── elfio_symbols.hpp │ │ └── elfio_utils.hpp ├── externalirq.cpp ├── externalirq.h ├── externaltype.h ├── flash.cpp ├── flash.h ├── flashprog.cpp ├── flashprog.h ├── funktor.h ├── getopt │ ├── bsittler's Home Page.URL │ ├── getopt.h │ ├── my_getopt.c │ └── my_getopt.h ├── hardware.cpp ├── hardware.h ├── helper.cpp ├── helper.h ├── hwacomp.cpp ├── hwacomp.h ├── hwad.cpp ├── hwad.h ├── hwdecls.h ├── hweeprom.cpp ├── hweeprom.h ├── hwpinchange.cpp ├── hwpinchange.h ├── hwport.cpp ├── hwport.h ├── hwspi.cpp ├── hwspi.h ├── hwsreg.cpp ├── hwsreg.h ├── hwstack.cpp ├── hwstack.h ├── hwtimer │ ├── Makefile.am │ ├── hwtimer.cpp │ ├── hwtimer.h │ ├── icapturesrc.cpp │ ├── icapturesrc.h │ ├── prescalermux.cpp │ ├── prescalermux.h │ ├── timerirq.cpp │ ├── timerirq.h │ ├── timerprescaler.cpp │ └── timerprescaler.h ├── hwuart.cpp ├── hwuart.h ├── hwwado.cpp ├── hwwado.h ├── ioregs.cpp ├── ioregs.h ├── irqsystem.cpp ├── irqsystem.h ├── memory.cpp ├── memory.h ├── msvc │ ├── config.h │ └── stdint.h ├── net.cpp ├── net.h ├── pin.cpp ├── pin.h ├── pinatport.cpp ├── pinatport.h ├── pinmon.cpp ├── pinmon.h ├── pinnotify.h ├── printable.h ├── python │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── pysimulationmember.h │ ├── pysimulavr.i │ ├── setcfg.py │ └── setup.py.in ├── rwmem.cpp ├── rwmem.h ├── simulationmember.h ├── simulavr.i ├── simulavr_info.h ├── specialmem.cpp ├── specialmem.h ├── spisink.cpp ├── spisink.h ├── spisrc.cpp ├── spisrc.h ├── string2.cpp ├── string2.h ├── string2_template.h ├── systemclock.cpp ├── systemclock.h ├── systemclocktypes.h ├── traceval.cpp ├── traceval.h ├── types.h ├── ui │ ├── Makefile.am │ ├── extpin.cpp │ ├── extpin.h │ ├── kbdgentables.cpp │ ├── keyboard.cpp │ ├── keyboard.h │ ├── keynumber_to_scancode.dat │ ├── keytrans.h │ ├── lcd.cpp │ ├── lcd.h │ ├── mysocket.cpp │ ├── mysocket.h │ ├── scope.cpp │ ├── scope.h │ ├── serialrx.cpp │ ├── serialrx.h │ ├── serialtx.cpp │ ├── serialtx.h │ ├── tracecontrol.h │ ├── ui.cpp │ ├── ui.h │ └── xcode_to_keynumber.dat ├── verilog │ ├── avr.v │ ├── avr_ATmega8.v │ ├── avr_ATtiny2313.v │ └── avr_ATtiny25.v └── vpi.cpp └── tab-check.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/ChangeLog.old -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | # 2 | # $Id$ 3 | # 4 | 5 | TBD 6 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/README -------------------------------------------------------------------------------- /README.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/README.gdb -------------------------------------------------------------------------------- /SUPPORT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/SUPPORT -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/TODO -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/bootstrap -------------------------------------------------------------------------------- /branches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/branches.txt -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/configure.ac -------------------------------------------------------------------------------- /create-sigmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/create-sigmap.py -------------------------------------------------------------------------------- /delivery-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/delivery-check -------------------------------------------------------------------------------- /delivery-check.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/delivery-check.conf.sample -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/README -------------------------------------------------------------------------------- /doc/_static/simulavr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/_static/simulavr.png -------------------------------------------------------------------------------- /doc/_templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/_templates/index.html -------------------------------------------------------------------------------- /doc/_templates/indexsidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/_templates/indexsidebar.html -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/build.rst -------------------------------------------------------------------------------- /doc/build_simple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/build_simple.rst -------------------------------------------------------------------------------- /doc/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/conf.py.in -------------------------------------------------------------------------------- /doc/config.texi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/config.texi.in -------------------------------------------------------------------------------- /doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/contents.rst -------------------------------------------------------------------------------- /doc/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/copyright.rst -------------------------------------------------------------------------------- /doc/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/download.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/features.rst -------------------------------------------------------------------------------- /doc/formatcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/formatcode.js -------------------------------------------------------------------------------- /doc/helpwanted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/helpwanted.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/limitations.rst -------------------------------------------------------------------------------- /doc/log2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/log2html.py -------------------------------------------------------------------------------- /doc/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/manual.rst -------------------------------------------------------------------------------- /doc/platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/platform.rst -------------------------------------------------------------------------------- /doc/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/report.css -------------------------------------------------------------------------------- /doc/simulavr.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/simulavr.doxy -------------------------------------------------------------------------------- /doc/simulavr.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/simulavr.texi -------------------------------------------------------------------------------- /doc/tclgui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/tclgui.rst -------------------------------------------------------------------------------- /doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/texinfo.tex -------------------------------------------------------------------------------- /doc/todo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/todo.rst -------------------------------------------------------------------------------- /doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/usage.rst -------------------------------------------------------------------------------- /doc/verilog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/verilog.rst -------------------------------------------------------------------------------- /doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/version.texi -------------------------------------------------------------------------------- /doc/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/web/.gitignore -------------------------------------------------------------------------------- /doc/web/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # $Id$ 3 | # 4 | 5 | # empty, will be removed! 6 | 7 | -------------------------------------------------------------------------------- /doc/web/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/web/conf.py.in -------------------------------------------------------------------------------- /doc/web/copy-to-cvs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/doc/web/copy-to-cvs.sh -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/ChangeLog -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/anacomp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/anacomp/.gitignore -------------------------------------------------------------------------------- /examples/anacomp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/anacomp/Makefile.am -------------------------------------------------------------------------------- /examples/anacomp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/anacomp/README -------------------------------------------------------------------------------- /examples/anacomp/anacomp.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/anacomp/anacomp.tcl -------------------------------------------------------------------------------- /examples/anacomp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/anacomp/main.c -------------------------------------------------------------------------------- /examples/atmega128_timer/.gitignore: -------------------------------------------------------------------------------- 1 | timer.elf 2 | -------------------------------------------------------------------------------- /examples/atmega128_timer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega128_timer/Makefile.am -------------------------------------------------------------------------------- /examples/atmega128_timer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega128_timer/README -------------------------------------------------------------------------------- /examples/atmega128_timer/debugio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega128_timer/debugio.c -------------------------------------------------------------------------------- /examples/atmega128_timer/debugio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega128_timer/debugio.h -------------------------------------------------------------------------------- /examples/atmega128_timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega128_timer/main.c -------------------------------------------------------------------------------- /examples/atmega48/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/.gitignore -------------------------------------------------------------------------------- /examples/atmega48/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/Makefile.am -------------------------------------------------------------------------------- /examples/atmega48/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/README -------------------------------------------------------------------------------- /examples/atmega48/anadata1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/anadata1 -------------------------------------------------------------------------------- /examples/atmega48/anadata2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/anadata2 -------------------------------------------------------------------------------- /examples/atmega48/anadata3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/anadata3 -------------------------------------------------------------------------------- /examples/atmega48/atmega48.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/atmega48.tcl -------------------------------------------------------------------------------- /examples/atmega48/check.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/check.tcl.in -------------------------------------------------------------------------------- /examples/atmega48/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/main.cpp -------------------------------------------------------------------------------- /examples/atmega48/spidata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmega48/spidata -------------------------------------------------------------------------------- /examples/atmel_key/.gitignore: -------------------------------------------------------------------------------- 1 | atmel_key.elf 2 | -------------------------------------------------------------------------------- /examples/atmel_key/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/Makefile.am -------------------------------------------------------------------------------- /examples/atmel_key/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/Notes.txt -------------------------------------------------------------------------------- /examples/atmel_key/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/README -------------------------------------------------------------------------------- /examples/atmel_key/StdDefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/StdDefs.c -------------------------------------------------------------------------------- /examples/atmel_key/StdDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/StdDefs.h -------------------------------------------------------------------------------- /examples/atmel_key/atmel_key.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/atmel_key.tcl -------------------------------------------------------------------------------- /examples/atmel_key/kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/kb.c -------------------------------------------------------------------------------- /examples/atmel_key/kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/kb.h -------------------------------------------------------------------------------- /examples/atmel_key/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/main.c -------------------------------------------------------------------------------- /examples/atmel_key/pindefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/pindefs.h -------------------------------------------------------------------------------- /examples/atmel_key/scancodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/scancodes.h -------------------------------------------------------------------------------- /examples/atmel_key/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/serial.c -------------------------------------------------------------------------------- /examples/atmel_key/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/atmel_key/serial.h -------------------------------------------------------------------------------- /examples/feedback/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/.gitignore -------------------------------------------------------------------------------- /examples/feedback/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/Makefile.am -------------------------------------------------------------------------------- /examples/feedback/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/README -------------------------------------------------------------------------------- /examples/feedback/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/adc.c -------------------------------------------------------------------------------- /examples/feedback/debugio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/debugio.c -------------------------------------------------------------------------------- /examples/feedback/debugio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/debugio.h -------------------------------------------------------------------------------- /examples/feedback/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/defines.h -------------------------------------------------------------------------------- /examples/feedback/feedback.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/feedback.tcl -------------------------------------------------------------------------------- /examples/feedback/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/main.c -------------------------------------------------------------------------------- /examples/feedback/simfeedback.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/simfeedback.tcl.in -------------------------------------------------------------------------------- /examples/feedback/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/uart.c -------------------------------------------------------------------------------- /examples/feedback/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/feedback/uart.h -------------------------------------------------------------------------------- /examples/gui.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/gui.tcl.in -------------------------------------------------------------------------------- /examples/kbd.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/kbd.xbm -------------------------------------------------------------------------------- /examples/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/.gitignore -------------------------------------------------------------------------------- /examples/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/Makefile.am -------------------------------------------------------------------------------- /examples/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/README -------------------------------------------------------------------------------- /examples/python/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/adc.c -------------------------------------------------------------------------------- /examples/python/adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/adc.py -------------------------------------------------------------------------------- /examples/python/ex_pinout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/ex_pinout.c -------------------------------------------------------------------------------- /examples/python/ex_pinout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/ex_pinout.py -------------------------------------------------------------------------------- /examples/python/ex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/ex_utils.py -------------------------------------------------------------------------------- /examples/python/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/example.c -------------------------------------------------------------------------------- /examples/python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/example.py -------------------------------------------------------------------------------- /examples/python/example_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/example_io.c -------------------------------------------------------------------------------- /examples/python/example_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/example_io.py -------------------------------------------------------------------------------- /examples/python/example_pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/example_pin.py -------------------------------------------------------------------------------- /examples/python/multicore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/multicore.c -------------------------------------------------------------------------------- /examples/python/multicore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/python/multicore.py -------------------------------------------------------------------------------- /examples/simple_ex1/.gitignore: -------------------------------------------------------------------------------- 1 | fred.elf 2 | -------------------------------------------------------------------------------- /examples/simple_ex1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_ex1/Makefile.am -------------------------------------------------------------------------------- /examples/simple_ex1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_ex1/README -------------------------------------------------------------------------------- /examples/simple_ex1/fred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_ex1/fred.c -------------------------------------------------------------------------------- /examples/simple_serial/.gitignore: -------------------------------------------------------------------------------- 1 | *.elf 2 | *.hex 3 | 4 | -------------------------------------------------------------------------------- /examples/simple_serial/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_serial/Makefile.am -------------------------------------------------------------------------------- /examples/simple_serial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_serial/README -------------------------------------------------------------------------------- /examples/simple_serial/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_serial/main.c -------------------------------------------------------------------------------- /examples/simple_serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_serial/serial.c -------------------------------------------------------------------------------- /examples/simple_serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simple_serial/serial.h -------------------------------------------------------------------------------- /examples/simulavr.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/simulavr.tcl.in -------------------------------------------------------------------------------- /examples/spi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/.gitignore -------------------------------------------------------------------------------- /examples/spi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/Makefile.am -------------------------------------------------------------------------------- /examples/spi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/README -------------------------------------------------------------------------------- /examples/spi/anadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/anadata -------------------------------------------------------------------------------- /examples/spi/check.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/check.tcl.in -------------------------------------------------------------------------------- /examples/spi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/main.cpp -------------------------------------------------------------------------------- /examples/spi/spi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/spi.tcl -------------------------------------------------------------------------------- /examples/spi/spidata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/spi/spidata -------------------------------------------------------------------------------- /examples/stdiodemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/.gitignore -------------------------------------------------------------------------------- /examples/stdiodemo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/Makefile.am -------------------------------------------------------------------------------- /examples/stdiodemo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/README -------------------------------------------------------------------------------- /examples/stdiodemo/checkdebug.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/checkdebug.gdb -------------------------------------------------------------------------------- /examples/stdiodemo/checkdebug.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/checkdebug.tcl.in -------------------------------------------------------------------------------- /examples/stdiodemo/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/defines.h -------------------------------------------------------------------------------- /examples/stdiodemo/hd44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/hd44780.c -------------------------------------------------------------------------------- /examples/stdiodemo/hd44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/hd44780.h -------------------------------------------------------------------------------- /examples/stdiodemo/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/lcd.c -------------------------------------------------------------------------------- /examples/stdiodemo/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/lcd.h -------------------------------------------------------------------------------- /examples/stdiodemo/stdiodemo-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/stdiodemo-setup.jpg -------------------------------------------------------------------------------- /examples/stdiodemo/stdiodemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/stdiodemo.c -------------------------------------------------------------------------------- /examples/stdiodemo/stdiodemo.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/stdiodemo.dox -------------------------------------------------------------------------------- /examples/stdiodemo/stdiodemo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/stdiodemo.tcl -------------------------------------------------------------------------------- /examples/stdiodemo/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/uart.c -------------------------------------------------------------------------------- /examples/stdiodemo/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/stdiodemo/uart.h -------------------------------------------------------------------------------- /examples/verilog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/.gitignore -------------------------------------------------------------------------------- /examples/verilog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/Makefile.am -------------------------------------------------------------------------------- /examples/verilog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/README -------------------------------------------------------------------------------- /examples/verilog/baretest.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/baretest.sav -------------------------------------------------------------------------------- /examples/verilog/baretest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/baretest.v -------------------------------------------------------------------------------- /examples/verilog/csinglepincomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/csinglepincomm.c -------------------------------------------------------------------------------- /examples/verilog/csinglepincomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/csinglepincomm.h -------------------------------------------------------------------------------- /examples/verilog/left-unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/left-unit.c -------------------------------------------------------------------------------- /examples/verilog/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/loop.c -------------------------------------------------------------------------------- /examples/verilog/loop.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/loop.sav -------------------------------------------------------------------------------- /examples/verilog/loop.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/loop.v -------------------------------------------------------------------------------- /examples/verilog/right-unit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/right-unit.s -------------------------------------------------------------------------------- /examples/verilog/singlepincomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/singlepincomm.h -------------------------------------------------------------------------------- /examples/verilog/singlepincomm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/singlepincomm.s -------------------------------------------------------------------------------- /examples/verilog/spc.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spc.sav -------------------------------------------------------------------------------- /examples/verilog/spc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spc.v -------------------------------------------------------------------------------- /examples/verilog/spi-waveforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spi-waveforms.c -------------------------------------------------------------------------------- /examples/verilog/spi-waveforms.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spi-waveforms.sav -------------------------------------------------------------------------------- /examples/verilog/spi-waveforms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spi-waveforms.v -------------------------------------------------------------------------------- /examples/verilog/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spi.c -------------------------------------------------------------------------------- /examples/verilog/spi.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spi.sav -------------------------------------------------------------------------------- /examples/verilog/spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/spi.v -------------------------------------------------------------------------------- /examples/verilog/toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/examples/verilog/toggle.c -------------------------------------------------------------------------------- /git-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/git-changelog.sh -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/README -------------------------------------------------------------------------------- /m4/ac_pkg_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/ac_pkg_swig.m4 -------------------------------------------------------------------------------- /m4/avr_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/avr_swig.m4 -------------------------------------------------------------------------------- /m4/avr_tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/avr_tcl.m4 -------------------------------------------------------------------------------- /m4/ax_prog_doxygen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/ax_prog_doxygen.m4 -------------------------------------------------------------------------------- /m4/ax_python_module.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/ax_python_module.m4 -------------------------------------------------------------------------------- /m4/az_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/az_python.m4 -------------------------------------------------------------------------------- /m4/check_mingw.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/check_mingw.m4 -------------------------------------------------------------------------------- /m4/check_msys_zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/check_msys_zlib.m4 -------------------------------------------------------------------------------- /m4/check_winsock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/check_winsock.m4 -------------------------------------------------------------------------------- /m4/swig_enable_cxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/m4/swig_enable_cxx.m4 -------------------------------------------------------------------------------- /make_tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/make_tarball -------------------------------------------------------------------------------- /regress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/.gitignore -------------------------------------------------------------------------------- /regress/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/Makefile.am -------------------------------------------------------------------------------- /regress/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/README -------------------------------------------------------------------------------- /regress/avrtest/.gitignore: -------------------------------------------------------------------------------- 1 | *.elf 2 | *.report 3 | *.output 4 | avrtest.makefile 5 | 6 | -------------------------------------------------------------------------------- /regress/avrtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/Makefile.am -------------------------------------------------------------------------------- /regress/avrtest/avrtest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/avrtest.cfg -------------------------------------------------------------------------------- /regress/avrtest/avrtest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/avrtest.template -------------------------------------------------------------------------------- /regress/avrtest/avrtest_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/avrtest_help.c -------------------------------------------------------------------------------- /regress/avrtest/avrtest_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/avrtest_help.h -------------------------------------------------------------------------------- /regress/avrtest/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/run_test.sh -------------------------------------------------------------------------------- /regress/avrtest/test_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/test_abort.c -------------------------------------------------------------------------------- /regress/avrtest/test_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/test_exit.c -------------------------------------------------------------------------------- /regress/avrtest/test_maxruntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/avrtest/test_maxruntime.c -------------------------------------------------------------------------------- /regress/extinttest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/.gitignore -------------------------------------------------------------------------------- /regress/extinttest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/Makefile.am -------------------------------------------------------------------------------- /regress/extinttest/ext.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext.cfg -------------------------------------------------------------------------------- /regress/extinttest/ext.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext.template -------------------------------------------------------------------------------- /regress/extinttest/ext_int0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext_int0.c -------------------------------------------------------------------------------- /regress/extinttest/ext_int0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext_int0.py -------------------------------------------------------------------------------- /regress/extinttest/ext_int1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext_int1.py -------------------------------------------------------------------------------- /regress/extinttest/ext_int2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext_int2.py -------------------------------------------------------------------------------- /regress/extinttest/ext_pcint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext_pcint.c -------------------------------------------------------------------------------- /regress/extinttest/ext_pcint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/extinttest/ext_pcint.py -------------------------------------------------------------------------------- /regress/gtest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/.gitignore -------------------------------------------------------------------------------- /regress/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/Makefile.am -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/CHANGES -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/CONTRIBUTORS -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/COPYING -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/README -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-all.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-death-test.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-filepath.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-port.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-printers.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-test-part.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest.cc -------------------------------------------------------------------------------- /regress/gtest/gtest-1.6.0/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest-1.6.0/src/gtest_main.cc -------------------------------------------------------------------------------- /regress/gtest/gtest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/gtest_main.cpp -------------------------------------------------------------------------------- /regress/gtest/session_001/avr_code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_001/avr_code.s -------------------------------------------------------------------------------- /regress/gtest/session_001/unittest001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_001/unittest001.cpp -------------------------------------------------------------------------------- /regress/gtest/session_io_pin/tc1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_io_pin/tc1.s -------------------------------------------------------------------------------- /regress/gtest/session_io_pin/unittest_io_pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_io_pin/unittest_io_pin.cpp -------------------------------------------------------------------------------- /regress/gtest/session_irq_check/check.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_irq_check/check.s -------------------------------------------------------------------------------- /regress/gtest/session_irq_check/tc1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_irq_check/tc1.s -------------------------------------------------------------------------------- /regress/gtest/session_irq_check/tc2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_irq_check/tc2.s -------------------------------------------------------------------------------- /regress/gtest/session_irq_check/tc3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_irq_check/tc3.s -------------------------------------------------------------------------------- /regress/gtest/session_irq_check/unittest_irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/gtest/session_irq_check/unittest_irq.cpp -------------------------------------------------------------------------------- /regress/modtest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/.gitignore -------------------------------------------------------------------------------- /regress/modtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/Makefile.am -------------------------------------------------------------------------------- /regress/modtest/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc.c -------------------------------------------------------------------------------- /regress/modtest/adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc.py -------------------------------------------------------------------------------- /regress/modtest/adc_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_diff.c -------------------------------------------------------------------------------- /regress/modtest/adc_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_diff.py -------------------------------------------------------------------------------- /regress/modtest/adc_diff_t25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_diff_t25.c -------------------------------------------------------------------------------- /regress/modtest/adc_diff_t25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_diff_t25.py -------------------------------------------------------------------------------- /regress/modtest/adc_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_fr.c -------------------------------------------------------------------------------- /regress/modtest/adc_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_fr.py -------------------------------------------------------------------------------- /regress/modtest/adc_gain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_gain.py -------------------------------------------------------------------------------- /regress/modtest/adc_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_int.c -------------------------------------------------------------------------------- /regress/modtest/adc_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/adc_int.py -------------------------------------------------------------------------------- /regress/modtest/anacomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/anacomp.c -------------------------------------------------------------------------------- /regress/modtest/anacomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/anacomp.py -------------------------------------------------------------------------------- /regress/modtest/anacomp_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/anacomp_int.c -------------------------------------------------------------------------------- /regress/modtest/anacomp_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/anacomp_int.py -------------------------------------------------------------------------------- /regress/modtest/anacomp_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/anacomp_mux.c -------------------------------------------------------------------------------- /regress/modtest/anacomp_mux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/anacomp_mux.py -------------------------------------------------------------------------------- /regress/modtest/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/eeprom.c -------------------------------------------------------------------------------- /regress/modtest/eeprom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/eeprom.py -------------------------------------------------------------------------------- /regress/modtest/eeprom_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/eeprom_int.c -------------------------------------------------------------------------------- /regress/modtest/eeprom_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/eeprom_int.py -------------------------------------------------------------------------------- /regress/modtest/modtest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/modtest.cfg -------------------------------------------------------------------------------- /regress/modtest/modtest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/modtest.template -------------------------------------------------------------------------------- /regress/modtest/pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/pin.py -------------------------------------------------------------------------------- /regress/modtest/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/port.c -------------------------------------------------------------------------------- /regress/modtest/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modtest/port.py -------------------------------------------------------------------------------- /regress/modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/Makefile.am -------------------------------------------------------------------------------- /regress/modules/avr_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/avr_target.py -------------------------------------------------------------------------------- /regress/modules/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/base_test.py -------------------------------------------------------------------------------- /regress/modules/create_makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/create_makefile.py -------------------------------------------------------------------------------- /regress/modules/gdb_rsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/gdb_rsp.py -------------------------------------------------------------------------------- /regress/modules/registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/registers.py -------------------------------------------------------------------------------- /regress/modules/regress_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/regress_unittest.py -------------------------------------------------------------------------------- /regress/modules/simtestutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/simtestutil.py -------------------------------------------------------------------------------- /regress/modules/vcdreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/vcdreader.py -------------------------------------------------------------------------------- /regress/modules/vcdtestutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/modules/vcdtestutil.py -------------------------------------------------------------------------------- /regress/regress.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/regress.py.in -------------------------------------------------------------------------------- /regress/tcl/.gitignore: -------------------------------------------------------------------------------- 1 | *.elf 2 | tcl-test.tcl 3 | 4 | -------------------------------------------------------------------------------- /regress/tcl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/tcl/Makefile.am -------------------------------------------------------------------------------- /regress/tcl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/tcl/main.c -------------------------------------------------------------------------------- /regress/tcl/tcl-test.tcl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/tcl/tcl-test.tcl.in -------------------------------------------------------------------------------- /regress/test_opcodes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/Makefile.am -------------------------------------------------------------------------------- /regress/test_opcodes/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/TODO -------------------------------------------------------------------------------- /regress/test_opcodes/test_ADC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ADC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ADD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ADD.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ADIW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ADIW.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_AND.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_AND.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ANDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ANDI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ASR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ASR.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_BCLR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_BCLR.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_BLD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_BLD.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_BRBC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_BRBC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_BRBS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_BRBS.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_BSET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_BSET.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_BST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_BST.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_CALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_CALL.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_COM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_COM.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_CP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_CP.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_CPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_CPC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_CPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_CPI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_CPSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_CPSE.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_DEC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_DEC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_EOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_EOR.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ICALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ICALL.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_IJMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_IJMP.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_INC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_INC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_JMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_JMP.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LDD_Y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LDD_Y.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LDD_Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LDD_Z.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LDI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LDS.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_X.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_X.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_X_decr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_X_decr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_X_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_X_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_Y_decr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_Y_decr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_Y_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_Y_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_Z_decr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_Z_decr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LD_Z_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LD_Z_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LPM.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LPM_Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LPM_Z.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LPM_Z_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LPM_Z_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_LSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_LSR.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_MOV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_MOV.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_MOVW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_MOVW.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_MUL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_MUL.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_MULS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_MULS.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_MULSU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_MULSU.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_NEG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_NEG.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_NOP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_NOP.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_OR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_OR.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ORI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ORI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_POP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_POP.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_PUSH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_PUSH.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_RCALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_RCALL.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_RET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_RET.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_RETI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_RETI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_RJMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_RJMP.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ROR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ROR.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SBC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SBC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SBCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SBCI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SBIW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SBIW.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SBRC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SBRC.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SBRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SBRS.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_STD_Y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_STD_Y.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_STD_Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_STD_Z.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_STS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_STS.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_X.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_X.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_X_decr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_X_decr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_X_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_X_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_Y_decr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_Y_decr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_Y_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_Y_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_Z_decr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_Z_decr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_ST_Z_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_ST_Z_incr.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SUB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SUB.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SUBI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SUBI.py -------------------------------------------------------------------------------- /regress/test_opcodes/test_SWAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/test_opcodes/test_SWAP.py -------------------------------------------------------------------------------- /regress/timertest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/.gitignore -------------------------------------------------------------------------------- /regress/timertest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/Makefile.am -------------------------------------------------------------------------------- /regress/timertest/timer_16_extn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16_extn.py -------------------------------------------------------------------------------- /regress/timertest/timer_16_extp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16_extp.py -------------------------------------------------------------------------------- /regress/timertest/timer_16_icap_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16_icap_n.py -------------------------------------------------------------------------------- /regress/timertest/timer_16_icap_nc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16_icap_nc.py -------------------------------------------------------------------------------- /regress/timertest/timer_16_icap_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16_icap_p.py -------------------------------------------------------------------------------- /regress/timertest/timer_16_icap_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16_icap_pc.py -------------------------------------------------------------------------------- /regress/timertest/timer_16bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit.c -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_ext.c -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_fastpwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_fastpwm.py -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_fastpwm.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_fastpwm.sig -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_icap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_icap.c -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_normal.py -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_normal.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_normal.sig -------------------------------------------------------------------------------- /regress/timertest/timer_16bit_normal_90.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_16bit_normal_90.sig -------------------------------------------------------------------------------- /regress/timertest/timer_8bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit.c -------------------------------------------------------------------------------- /regress/timertest/timer_8bit_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit_ctc.c -------------------------------------------------------------------------------- /regress/timertest/timer_8bit_ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit_ctc.py -------------------------------------------------------------------------------- /regress/timertest/timer_8bit_ctc.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit_ctc.sig -------------------------------------------------------------------------------- /regress/timertest/timer_8bit_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit_normal.py -------------------------------------------------------------------------------- /regress/timertest/timer_8bit_normal.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit_normal.sig -------------------------------------------------------------------------------- /regress/timertest/timer_8bit_normal_90.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_8bit_normal_90.sig -------------------------------------------------------------------------------- /regress/timertest/timer_tX5_8bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_tX5_8bit.c -------------------------------------------------------------------------------- /regress/timertest/timer_tX5_8bit_ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_tX5_8bit_ctc.py -------------------------------------------------------------------------------- /regress/timertest/timer_tX5_8bit_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_tX5_8bit_normal.py -------------------------------------------------------------------------------- /regress/timertest/timer_tX5_8bit_pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timer_tX5_8bit_pwm.py -------------------------------------------------------------------------------- /regress/timertest/timertest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timertest.cfg -------------------------------------------------------------------------------- /regress/timertest/timertest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/timertest/timertest.template -------------------------------------------------------------------------------- /regress/verilog/.gitignore: -------------------------------------------------------------------------------- 1 | *.vvp 2 | *.elf 3 | *.vcd 4 | 5 | -------------------------------------------------------------------------------- /regress/verilog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/verilog/Makefile.am -------------------------------------------------------------------------------- /regress/verilog/baretest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/verilog/baretest.v -------------------------------------------------------------------------------- /regress/verilog/toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/verilog/toggle.c -------------------------------------------------------------------------------- /regress/verilog/verilog-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/regress/verilog/verilog-test.py -------------------------------------------------------------------------------- /simulavr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/simulavr.vcproj -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/adcpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/adcpin.cpp -------------------------------------------------------------------------------- /src/adcpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/adcpin.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/application.h -------------------------------------------------------------------------------- /src/at4433.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/at4433.cpp -------------------------------------------------------------------------------- /src/at4433.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/at4433.h -------------------------------------------------------------------------------- /src/at8515.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/at8515.cpp -------------------------------------------------------------------------------- /src/at8515.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/at8515.h -------------------------------------------------------------------------------- /src/at90canbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/at90canbase.cpp -------------------------------------------------------------------------------- /src/at90canbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/at90canbase.h -------------------------------------------------------------------------------- /src/atmega128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega128.cpp -------------------------------------------------------------------------------- /src/atmega128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega128.h -------------------------------------------------------------------------------- /src/atmega1284abase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega1284abase.cpp -------------------------------------------------------------------------------- /src/atmega1284abase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega1284abase.h -------------------------------------------------------------------------------- /src/atmega16_32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega16_32.cpp -------------------------------------------------------------------------------- /src/atmega16_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega16_32.h -------------------------------------------------------------------------------- /src/atmega668base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega668base.cpp -------------------------------------------------------------------------------- /src/atmega668base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega668base.h -------------------------------------------------------------------------------- /src/atmega8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega8.cpp -------------------------------------------------------------------------------- /src/atmega8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/atmega8.h -------------------------------------------------------------------------------- /src/attiny2313.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/attiny2313.cpp -------------------------------------------------------------------------------- /src/attiny2313.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/attiny2313.h -------------------------------------------------------------------------------- /src/attiny25_45_85.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/attiny25_45_85.cpp -------------------------------------------------------------------------------- /src/attiny25_45_85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/attiny25_45_85.h -------------------------------------------------------------------------------- /src/avrdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrdevice.cpp -------------------------------------------------------------------------------- /src/avrdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrdevice.h -------------------------------------------------------------------------------- /src/avrdevice_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrdevice_impl.h -------------------------------------------------------------------------------- /src/avrerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrerror.cpp -------------------------------------------------------------------------------- /src/avrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrerror.h -------------------------------------------------------------------------------- /src/avrfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrfactory.cpp -------------------------------------------------------------------------------- /src/avrfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrfactory.h -------------------------------------------------------------------------------- /src/avrmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrmalloc.cpp -------------------------------------------------------------------------------- /src/avrmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrmalloc.h -------------------------------------------------------------------------------- /src/avrreadelf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrreadelf.cpp -------------------------------------------------------------------------------- /src/avrreadelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrreadelf.h -------------------------------------------------------------------------------- /src/avrsignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrsignature.cpp -------------------------------------------------------------------------------- /src/avrsignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/avrsignature.h -------------------------------------------------------------------------------- /src/cmd/Makefile.am: -------------------------------------------------------------------------------- 1 | # 2 | # $Id$ 3 | # 4 | 5 | pkginclude_HEADERS = dumpargs.h gdb.h 6 | 7 | # EOF 8 | -------------------------------------------------------------------------------- /src/cmd/dumpargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/cmd/dumpargs.cpp -------------------------------------------------------------------------------- /src/cmd/dumpargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/cmd/dumpargs.h -------------------------------------------------------------------------------- /src/cmd/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/cmd/gdb.h -------------------------------------------------------------------------------- /src/cmd/gdbserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/cmd/gdbserver.cpp -------------------------------------------------------------------------------- /src/cmd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/cmd/main.cpp -------------------------------------------------------------------------------- /src/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/decoder.cpp -------------------------------------------------------------------------------- /src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/decoder.h -------------------------------------------------------------------------------- /src/decoder_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/decoder_trace.cpp -------------------------------------------------------------------------------- /src/elfio/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/AUTHORS -------------------------------------------------------------------------------- /src/elfio/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/COPYING -------------------------------------------------------------------------------- /src/elfio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/README -------------------------------------------------------------------------------- /src/elfio/VERSION: -------------------------------------------------------------------------------- 1 | This is ElfIO version 2.2, see http://elfio.sourceforge.net/. 2 | -------------------------------------------------------------------------------- /src/elfio/elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elf_types.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /src/elfio/elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/elfio/elfio/elfio_utils.hpp -------------------------------------------------------------------------------- /src/externalirq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/externalirq.cpp -------------------------------------------------------------------------------- /src/externalirq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/externalirq.h -------------------------------------------------------------------------------- /src/externaltype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/externaltype.h -------------------------------------------------------------------------------- /src/flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/flash.cpp -------------------------------------------------------------------------------- /src/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/flash.h -------------------------------------------------------------------------------- /src/flashprog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/flashprog.cpp -------------------------------------------------------------------------------- /src/flashprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/flashprog.h -------------------------------------------------------------------------------- /src/funktor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/funktor.h -------------------------------------------------------------------------------- /src/getopt/bsittler's Home Page.URL: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://xent.com/~bsittler/geocities/#my_getopt 3 | -------------------------------------------------------------------------------- /src/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/getopt/getopt.h -------------------------------------------------------------------------------- /src/getopt/my_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/getopt/my_getopt.c -------------------------------------------------------------------------------- /src/getopt/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/getopt/my_getopt.h -------------------------------------------------------------------------------- /src/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hardware.cpp -------------------------------------------------------------------------------- /src/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hardware.h -------------------------------------------------------------------------------- /src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/helper.cpp -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/hwacomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwacomp.cpp -------------------------------------------------------------------------------- /src/hwacomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwacomp.h -------------------------------------------------------------------------------- /src/hwad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwad.cpp -------------------------------------------------------------------------------- /src/hwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwad.h -------------------------------------------------------------------------------- /src/hwdecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwdecls.h -------------------------------------------------------------------------------- /src/hweeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hweeprom.cpp -------------------------------------------------------------------------------- /src/hweeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hweeprom.h -------------------------------------------------------------------------------- /src/hwpinchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwpinchange.cpp -------------------------------------------------------------------------------- /src/hwpinchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwpinchange.h -------------------------------------------------------------------------------- /src/hwport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwport.cpp -------------------------------------------------------------------------------- /src/hwport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwport.h -------------------------------------------------------------------------------- /src/hwspi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwspi.cpp -------------------------------------------------------------------------------- /src/hwspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwspi.h -------------------------------------------------------------------------------- /src/hwsreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwsreg.cpp -------------------------------------------------------------------------------- /src/hwsreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwsreg.h -------------------------------------------------------------------------------- /src/hwstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwstack.cpp -------------------------------------------------------------------------------- /src/hwstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwstack.h -------------------------------------------------------------------------------- /src/hwtimer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/Makefile.am -------------------------------------------------------------------------------- /src/hwtimer/hwtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/hwtimer.cpp -------------------------------------------------------------------------------- /src/hwtimer/hwtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/hwtimer.h -------------------------------------------------------------------------------- /src/hwtimer/icapturesrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/icapturesrc.cpp -------------------------------------------------------------------------------- /src/hwtimer/icapturesrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/icapturesrc.h -------------------------------------------------------------------------------- /src/hwtimer/prescalermux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/prescalermux.cpp -------------------------------------------------------------------------------- /src/hwtimer/prescalermux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/prescalermux.h -------------------------------------------------------------------------------- /src/hwtimer/timerirq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/timerirq.cpp -------------------------------------------------------------------------------- /src/hwtimer/timerirq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/timerirq.h -------------------------------------------------------------------------------- /src/hwtimer/timerprescaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/timerprescaler.cpp -------------------------------------------------------------------------------- /src/hwtimer/timerprescaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwtimer/timerprescaler.h -------------------------------------------------------------------------------- /src/hwuart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwuart.cpp -------------------------------------------------------------------------------- /src/hwuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwuart.h -------------------------------------------------------------------------------- /src/hwwado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwwado.cpp -------------------------------------------------------------------------------- /src/hwwado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/hwwado.h -------------------------------------------------------------------------------- /src/ioregs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ioregs.cpp -------------------------------------------------------------------------------- /src/ioregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ioregs.h -------------------------------------------------------------------------------- /src/irqsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/irqsystem.cpp -------------------------------------------------------------------------------- /src/irqsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/irqsystem.h -------------------------------------------------------------------------------- /src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/memory.cpp -------------------------------------------------------------------------------- /src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/memory.h -------------------------------------------------------------------------------- /src/msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/msvc/config.h -------------------------------------------------------------------------------- /src/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/msvc/stdint.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/net.h -------------------------------------------------------------------------------- /src/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pin.cpp -------------------------------------------------------------------------------- /src/pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pin.h -------------------------------------------------------------------------------- /src/pinatport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pinatport.cpp -------------------------------------------------------------------------------- /src/pinatport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pinatport.h -------------------------------------------------------------------------------- /src/pinmon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pinmon.cpp -------------------------------------------------------------------------------- /src/pinmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pinmon.h -------------------------------------------------------------------------------- /src/pinnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/pinnotify.h -------------------------------------------------------------------------------- /src/printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/printable.h -------------------------------------------------------------------------------- /src/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/.gitignore -------------------------------------------------------------------------------- /src/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/Makefile.am -------------------------------------------------------------------------------- /src/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/README -------------------------------------------------------------------------------- /src/python/pysimulationmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/pysimulationmember.h -------------------------------------------------------------------------------- /src/python/pysimulavr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/pysimulavr.i -------------------------------------------------------------------------------- /src/python/setcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/setcfg.py -------------------------------------------------------------------------------- /src/python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/python/setup.py.in -------------------------------------------------------------------------------- /src/rwmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/rwmem.cpp -------------------------------------------------------------------------------- /src/rwmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/rwmem.h -------------------------------------------------------------------------------- /src/simulationmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/simulationmember.h -------------------------------------------------------------------------------- /src/simulavr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/simulavr.i -------------------------------------------------------------------------------- /src/simulavr_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/simulavr_info.h -------------------------------------------------------------------------------- /src/specialmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/specialmem.cpp -------------------------------------------------------------------------------- /src/specialmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/specialmem.h -------------------------------------------------------------------------------- /src/spisink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/spisink.cpp -------------------------------------------------------------------------------- /src/spisink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/spisink.h -------------------------------------------------------------------------------- /src/spisrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/spisrc.cpp -------------------------------------------------------------------------------- /src/spisrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/spisrc.h -------------------------------------------------------------------------------- /src/string2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/string2.cpp -------------------------------------------------------------------------------- /src/string2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/string2.h -------------------------------------------------------------------------------- /src/string2_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/string2_template.h -------------------------------------------------------------------------------- /src/systemclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/systemclock.cpp -------------------------------------------------------------------------------- /src/systemclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/systemclock.h -------------------------------------------------------------------------------- /src/systemclocktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/systemclocktypes.h -------------------------------------------------------------------------------- /src/traceval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/traceval.cpp -------------------------------------------------------------------------------- /src/traceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/traceval.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/types.h -------------------------------------------------------------------------------- /src/ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/Makefile.am -------------------------------------------------------------------------------- /src/ui/extpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/extpin.cpp -------------------------------------------------------------------------------- /src/ui/extpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/extpin.h -------------------------------------------------------------------------------- /src/ui/kbdgentables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/kbdgentables.cpp -------------------------------------------------------------------------------- /src/ui/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/keyboard.cpp -------------------------------------------------------------------------------- /src/ui/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/keyboard.h -------------------------------------------------------------------------------- /src/ui/keynumber_to_scancode.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/keynumber_to_scancode.dat -------------------------------------------------------------------------------- /src/ui/keytrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/keytrans.h -------------------------------------------------------------------------------- /src/ui/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/lcd.cpp -------------------------------------------------------------------------------- /src/ui/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/lcd.h -------------------------------------------------------------------------------- /src/ui/mysocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/mysocket.cpp -------------------------------------------------------------------------------- /src/ui/mysocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/mysocket.h -------------------------------------------------------------------------------- /src/ui/scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/scope.cpp -------------------------------------------------------------------------------- /src/ui/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/scope.h -------------------------------------------------------------------------------- /src/ui/serialrx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/serialrx.cpp -------------------------------------------------------------------------------- /src/ui/serialrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/serialrx.h -------------------------------------------------------------------------------- /src/ui/serialtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/serialtx.cpp -------------------------------------------------------------------------------- /src/ui/serialtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/serialtx.h -------------------------------------------------------------------------------- /src/ui/tracecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/tracecontrol.h -------------------------------------------------------------------------------- /src/ui/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/ui.cpp -------------------------------------------------------------------------------- /src/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/ui.h -------------------------------------------------------------------------------- /src/ui/xcode_to_keynumber.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/ui/xcode_to_keynumber.dat -------------------------------------------------------------------------------- /src/verilog/avr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/verilog/avr.v -------------------------------------------------------------------------------- /src/verilog/avr_ATmega8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/verilog/avr_ATmega8.v -------------------------------------------------------------------------------- /src/verilog/avr_ATtiny2313.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/verilog/avr_ATtiny2313.v -------------------------------------------------------------------------------- /src/verilog/avr_ATtiny25.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/verilog/avr_ATtiny25.v -------------------------------------------------------------------------------- /src/vpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/src/vpi.cpp -------------------------------------------------------------------------------- /tab-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Traumflug/simulavr/HEAD/tab-check.py --------------------------------------------------------------------------------