├── .gitignore ├── CNAME ├── CalcAddress.rgs ├── DBPaneContainer.cpp ├── DBPaneContainer.h ├── Interface ├── CBank.h ├── CBreakpoint.h ├── CBreakpointCollection.cpp ├── CBreakpointCollection.h ├── CMemoryContext.cpp ├── CMemoryContext.h ├── CPageCollection.cpp ├── CPageCollection.h ├── CTIApplication.cpp ├── CTIApplicationCollection.h ├── CTISymbolCollection.cpp ├── CTISymbolCollection.h └── Collection.h ├── LICENSE.txt ├── README.md ├── VariantAdapt.h ├── Wabbitemu.def ├── Wabbitemu.rgs ├── Wabbitemu.sln ├── Wabbitemu.vcxproj ├── Wabbitemu.vcxproj.filters ├── Wabbitemu.vcxproj.vspscc ├── Wabbitemu.vssscc ├── _config.yml ├── core ├── alu.c ├── alu.h ├── alu_reverse.c ├── alu_reverse.h ├── control.c ├── control.h ├── control_reverse.c ├── control_reverse.h ├── core.c ├── core.h ├── coretypes.h ├── device.c ├── device.h ├── indexcb.c ├── indexcb.h ├── indexcb_reverse.c ├── indexcb_reverse.h ├── modeltypes.h ├── optable.h ├── optable_reverse.h ├── reverse_info.c ├── reverse_info.h └── reverse_info_table.h ├── debugger ├── dbbreakpoints.c ├── dbbreakpoints.h ├── dbcolorlcd.c ├── dbcolorlcd.h ├── dbcommon.c ├── dbcommon.h ├── dbdisasm.c ├── dbdisasm.h ├── dbfinddialog.c ├── dbfinddialog.h ├── dbmem.c ├── dbmem.h ├── dbmonitor.c ├── dbmonitor.h ├── dbprofile.c ├── dbprofile.h ├── dbreg.c ├── dbreg.h ├── dbspriteviewer.c ├── dbspriteviewer.h ├── dbtoolbar.c ├── dbtoolbar.h ├── dbvalue.c ├── dbvalue.h ├── dbwatch.c ├── dbwatch.h ├── disassemble.c └── disassemble.h ├── gui ├── CGdiPlusBitmap.h ├── Catalog.bmp ├── DataObject.cpp ├── DataObject.h ├── DropSource.cpp ├── DropSource.h ├── DropTarget.cpp ├── DropTarget.h ├── ROM │ ├── Bootfree Source │ │ ├── BootFree.wcodeproj │ │ ├── README │ │ ├── bigmath.asm │ │ ├── boot.asm │ │ ├── cert.asm │ │ ├── colorlcd.asm │ │ ├── defs.inc │ │ ├── exec.asm │ │ ├── field.asm │ │ ├── flash.asm │ │ ├── font.asm │ │ ├── lcd.asm │ │ ├── makespasm.bat │ │ ├── math.asm │ │ ├── md5.asm │ │ ├── md5hw.asm │ │ ├── md5sw.asm │ │ ├── md5tbl.asm │ │ ├── mem.asm │ │ ├── misc.asm │ │ ├── ramcode.asm │ │ └── relocate.inc │ ├── Rom82.82p │ ├── Rom83.83p │ ├── Rom85.85s │ ├── Rom86.86p │ ├── bf73.hex │ ├── bf83pbe.hex │ ├── bf83pse.hex │ ├── bf84pbe.hex │ ├── bf84pcse.hex │ ├── bf84pse.hex │ └── rom8x │ │ ├── makespasm.bat │ │ ├── rom8x.8xp │ │ ├── rom8x.asm │ │ ├── rom8xcolor.8xp │ │ ├── ti83plus.inc │ │ └── ti84pcse.inc ├── Revsoft.AutoUpdater.exe ├── SkinPicker.bmp ├── TI-73.png ├── TI-82.png ├── TI-83+.png ├── TI-83+Keymap.png ├── TI-83+SE.png ├── TI-83.png ├── TI-83Keymap.png ├── TI-Icons.bmp ├── TI83P.bmp ├── TI83PSE.bmp ├── Wabbitemu.rc ├── WhatsNew.txt ├── back.bmp ├── break.bmp ├── buttondownleft.bmp ├── buttondownmiddle.bmp ├── buttondownright.bmp ├── buttonframe.bmp ├── buttonframeleft.bmp ├── buttonframemiddle.bmp ├── chevron.bmp ├── chevron7.bmp ├── displayoptionstest.c ├── displayoptionstest.h ├── downarrow.bmp ├── downarrow7.bmp ├── expandpanebuttons.bmp ├── goto.bmp ├── gui.c ├── gui.h ├── guibuttons.c ├── guibuttons.h ├── guicommandline.c ├── guicommandline.h ├── guicontext.c ├── guicontext.h ├── guicutout.c ├── guicutout.h ├── guidebug.c ├── guidebug.h ├── guidetached.c ├── guidetached.h ├── guidialog.c ├── guidialog.h ├── guifilepreview.c ├── guifilepreview.h ├── guiglow.c ├── guiglow.h ├── guikeylist.c ├── guikeylist.h ├── guilcd.c ├── guilcd.h ├── guiopenfile.c ├── guiopenfile.h ├── guioptions.c ├── guioptions.h ├── guiresource.c ├── guiresource.h ├── guisavestate.c ├── guisavestate.h ├── guisize.c ├── guisize.h ├── guiskin.c ├── guiskin.h ├── guispeed.c ├── guispeed.h ├── guiteacherview.c ├── guiteacherview.h ├── guiupdate.c ├── guiupdate.h ├── guivartree.c ├── guivartree.h ├── guiwizard.c ├── guiwizard.h ├── homescreen.bmp ├── left.bmp ├── left7.bmp ├── linksprites.h ├── map.h ├── membreak.bmp ├── osdownloadcallback.h ├── pngexport.c ├── pngexport.h ├── registry.c ├── registry.h ├── resource.h ├── right.bmp ├── right7.bmp ├── run.bmp ├── small_close.bmp ├── step.bmp ├── stepover.bmp ├── stop.bmp ├── ti-81.png ├── ti-81keymap.png ├── ti-82keymap.png ├── ti-84+.png ├── ti-84+cse.png ├── ti-84+csekeymap.png ├── ti-84+se.png ├── ti-84+sekeymap.png ├── ti-85.png ├── ti-85Keymap.png ├── ti-86.png ├── ti-86keymap.png ├── tsmall.ico └── wabbitemu.ico ├── hardware ├── 81hw.c ├── 81hw.h ├── 83hw.c ├── 83hw.h ├── 83phw.c ├── 83phw.h ├── 83psehw.c ├── 83psehw.h ├── 86hw.c ├── 86hw.h ├── colorlcd.c ├── colorlcd.h ├── keys.c ├── keys.h ├── lcd.c ├── lcd.h ├── link.c ├── link.h └── ti_stdint.h ├── index.html ├── interface ├── CCalcAddress.cpp ├── CCalcAddress.h ├── CKeypad.cpp ├── CKeypad.h ├── CLCD.cpp ├── CLCD.h ├── CLabelServer.cpp ├── CLabelServer.h ├── CPage.cpp ├── CPage.h ├── CPio.cpp ├── CPio.h ├── CTIApplication.h ├── CTIApplicationCollection.cpp ├── CTISymbol.cpp ├── CTISymbol.h ├── CWabbitemu.cpp ├── CWabbitemu.h ├── CZ80.cpp ├── CZ80.h ├── Wabbitemu.def ├── Wabbitemu.idl ├── calc.c ├── calc.h ├── state.c └── state.h ├── lib ├── x64 │ └── zlibstat.lib └── zlibstat.lib ├── stdafx.cpp ├── stdafx.h ├── test.vbs └── utilities ├── SendFile.h ├── avifile.cpp ├── avifile.h ├── bcalls.h ├── breakpoint.c ├── breakpoint.h ├── expandpane.c ├── expandpane.h ├── exportvar.c ├── exportvar.h ├── fileutilities.c ├── fileutilities.h ├── flags.h ├── ftp.c ├── ftp.h ├── gif.cpp ├── gif.h ├── ioapi.c ├── ioapi.h ├── iowin32.c ├── iowin32.h ├── label.c ├── label.h ├── linksendvar.c ├── linksendvar.h ├── miniunz.c ├── miniunz.h ├── minizip.c ├── print.c ├── print.h ├── savestate.cpp ├── savestate.h ├── screenshothandle.c ├── screenshothandle.h ├── sendfile.c ├── sendfileswindows.cpp ├── sendfileswindows.h ├── sound.c ├── sound.h ├── unzip.c ├── unzip.h ├── var.c ├── var.h ├── zconf.h ├── zip.c ├── zip.h ├── zlib.h └── zpipe.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | wabbitemu.org -------------------------------------------------------------------------------- /CalcAddress.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/CalcAddress.rgs -------------------------------------------------------------------------------- /DBPaneContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/DBPaneContainer.cpp -------------------------------------------------------------------------------- /DBPaneContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/DBPaneContainer.h -------------------------------------------------------------------------------- /Interface/CBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CBank.h -------------------------------------------------------------------------------- /Interface/CBreakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CBreakpoint.h -------------------------------------------------------------------------------- /Interface/CBreakpointCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CBreakpointCollection.cpp -------------------------------------------------------------------------------- /Interface/CBreakpointCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CBreakpointCollection.h -------------------------------------------------------------------------------- /Interface/CMemoryContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CMemoryContext.cpp -------------------------------------------------------------------------------- /Interface/CMemoryContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CMemoryContext.h -------------------------------------------------------------------------------- /Interface/CPageCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CPageCollection.cpp -------------------------------------------------------------------------------- /Interface/CPageCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CPageCollection.h -------------------------------------------------------------------------------- /Interface/CTIApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CTIApplication.cpp -------------------------------------------------------------------------------- /Interface/CTIApplicationCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CTIApplicationCollection.h -------------------------------------------------------------------------------- /Interface/CTISymbolCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CTISymbolCollection.cpp -------------------------------------------------------------------------------- /Interface/CTISymbolCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/CTISymbolCollection.h -------------------------------------------------------------------------------- /Interface/Collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Interface/Collection.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/README.md -------------------------------------------------------------------------------- /VariantAdapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/VariantAdapt.h -------------------------------------------------------------------------------- /Wabbitemu.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.def -------------------------------------------------------------------------------- /Wabbitemu.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.rgs -------------------------------------------------------------------------------- /Wabbitemu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.sln -------------------------------------------------------------------------------- /Wabbitemu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.vcxproj -------------------------------------------------------------------------------- /Wabbitemu.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.vcxproj.filters -------------------------------------------------------------------------------- /Wabbitemu.vcxproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.vcxproj.vspscc -------------------------------------------------------------------------------- /Wabbitemu.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/Wabbitemu.vssscc -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/_config.yml -------------------------------------------------------------------------------- /core/alu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/alu.c -------------------------------------------------------------------------------- /core/alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/alu.h -------------------------------------------------------------------------------- /core/alu_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/alu_reverse.c -------------------------------------------------------------------------------- /core/alu_reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/alu_reverse.h -------------------------------------------------------------------------------- /core/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/control.c -------------------------------------------------------------------------------- /core/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/control.h -------------------------------------------------------------------------------- /core/control_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/control_reverse.c -------------------------------------------------------------------------------- /core/control_reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/control_reverse.h -------------------------------------------------------------------------------- /core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/core.c -------------------------------------------------------------------------------- /core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/core.h -------------------------------------------------------------------------------- /core/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/coretypes.h -------------------------------------------------------------------------------- /core/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/device.c -------------------------------------------------------------------------------- /core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/device.h -------------------------------------------------------------------------------- /core/indexcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/indexcb.c -------------------------------------------------------------------------------- /core/indexcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/indexcb.h -------------------------------------------------------------------------------- /core/indexcb_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/indexcb_reverse.c -------------------------------------------------------------------------------- /core/indexcb_reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/indexcb_reverse.h -------------------------------------------------------------------------------- /core/modeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/modeltypes.h -------------------------------------------------------------------------------- /core/optable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/optable.h -------------------------------------------------------------------------------- /core/optable_reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/optable_reverse.h -------------------------------------------------------------------------------- /core/reverse_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/reverse_info.c -------------------------------------------------------------------------------- /core/reverse_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/reverse_info.h -------------------------------------------------------------------------------- /core/reverse_info_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/core/reverse_info_table.h -------------------------------------------------------------------------------- /debugger/dbbreakpoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbbreakpoints.c -------------------------------------------------------------------------------- /debugger/dbbreakpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbbreakpoints.h -------------------------------------------------------------------------------- /debugger/dbcolorlcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbcolorlcd.c -------------------------------------------------------------------------------- /debugger/dbcolorlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbcolorlcd.h -------------------------------------------------------------------------------- /debugger/dbcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbcommon.c -------------------------------------------------------------------------------- /debugger/dbcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbcommon.h -------------------------------------------------------------------------------- /debugger/dbdisasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbdisasm.c -------------------------------------------------------------------------------- /debugger/dbdisasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbdisasm.h -------------------------------------------------------------------------------- /debugger/dbfinddialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbfinddialog.c -------------------------------------------------------------------------------- /debugger/dbfinddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbfinddialog.h -------------------------------------------------------------------------------- /debugger/dbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbmem.c -------------------------------------------------------------------------------- /debugger/dbmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbmem.h -------------------------------------------------------------------------------- /debugger/dbmonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbmonitor.c -------------------------------------------------------------------------------- /debugger/dbmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbmonitor.h -------------------------------------------------------------------------------- /debugger/dbprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbprofile.c -------------------------------------------------------------------------------- /debugger/dbprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbprofile.h -------------------------------------------------------------------------------- /debugger/dbreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbreg.c -------------------------------------------------------------------------------- /debugger/dbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbreg.h -------------------------------------------------------------------------------- /debugger/dbspriteviewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbspriteviewer.c -------------------------------------------------------------------------------- /debugger/dbspriteviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbspriteviewer.h -------------------------------------------------------------------------------- /debugger/dbtoolbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbtoolbar.c -------------------------------------------------------------------------------- /debugger/dbtoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbtoolbar.h -------------------------------------------------------------------------------- /debugger/dbvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbvalue.c -------------------------------------------------------------------------------- /debugger/dbvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbvalue.h -------------------------------------------------------------------------------- /debugger/dbwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbwatch.c -------------------------------------------------------------------------------- /debugger/dbwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/dbwatch.h -------------------------------------------------------------------------------- /debugger/disassemble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/disassemble.c -------------------------------------------------------------------------------- /debugger/disassemble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/debugger/disassemble.h -------------------------------------------------------------------------------- /gui/CGdiPlusBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/CGdiPlusBitmap.h -------------------------------------------------------------------------------- /gui/Catalog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/Catalog.bmp -------------------------------------------------------------------------------- /gui/DataObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/DataObject.cpp -------------------------------------------------------------------------------- /gui/DataObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/DataObject.h -------------------------------------------------------------------------------- /gui/DropSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/DropSource.cpp -------------------------------------------------------------------------------- /gui/DropSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/DropSource.h -------------------------------------------------------------------------------- /gui/DropTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/DropTarget.cpp -------------------------------------------------------------------------------- /gui/DropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/DropTarget.h -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/BootFree.wcodeproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/BootFree.wcodeproj -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/README -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/bigmath.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/bigmath.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/boot.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/cert.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/cert.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/colorlcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/colorlcd.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/defs.inc -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/exec.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/exec.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/field.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/field.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/flash.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/flash.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/font.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/font.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/lcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/lcd.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/makespasm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/makespasm.bat -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/math.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/md5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/md5.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/md5hw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/md5hw.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/md5sw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/md5sw.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/md5tbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/md5tbl.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/mem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/mem.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/misc.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/ramcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/ramcode.asm -------------------------------------------------------------------------------- /gui/ROM/Bootfree Source/relocate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Bootfree Source/relocate.inc -------------------------------------------------------------------------------- /gui/ROM/Rom82.82p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Rom82.82p -------------------------------------------------------------------------------- /gui/ROM/Rom83.83p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Rom83.83p -------------------------------------------------------------------------------- /gui/ROM/Rom85.85s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Rom85.85s -------------------------------------------------------------------------------- /gui/ROM/Rom86.86p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/Rom86.86p -------------------------------------------------------------------------------- /gui/ROM/bf73.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/bf73.hex -------------------------------------------------------------------------------- /gui/ROM/bf83pbe.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/bf83pbe.hex -------------------------------------------------------------------------------- /gui/ROM/bf83pse.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/bf83pse.hex -------------------------------------------------------------------------------- /gui/ROM/bf84pbe.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/bf84pbe.hex -------------------------------------------------------------------------------- /gui/ROM/bf84pcse.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/bf84pcse.hex -------------------------------------------------------------------------------- /gui/ROM/bf84pse.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/bf84pse.hex -------------------------------------------------------------------------------- /gui/ROM/rom8x/makespasm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/rom8x/makespasm.bat -------------------------------------------------------------------------------- /gui/ROM/rom8x/rom8x.8xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/rom8x/rom8x.8xp -------------------------------------------------------------------------------- /gui/ROM/rom8x/rom8x.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/rom8x/rom8x.asm -------------------------------------------------------------------------------- /gui/ROM/rom8x/rom8xcolor.8xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/rom8x/rom8xcolor.8xp -------------------------------------------------------------------------------- /gui/ROM/rom8x/ti83plus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/rom8x/ti83plus.inc -------------------------------------------------------------------------------- /gui/ROM/rom8x/ti84pcse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ROM/rom8x/ti84pcse.inc -------------------------------------------------------------------------------- /gui/Revsoft.AutoUpdater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/Revsoft.AutoUpdater.exe -------------------------------------------------------------------------------- /gui/SkinPicker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/SkinPicker.bmp -------------------------------------------------------------------------------- /gui/TI-73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-73.png -------------------------------------------------------------------------------- /gui/TI-82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-82.png -------------------------------------------------------------------------------- /gui/TI-83+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-83+.png -------------------------------------------------------------------------------- /gui/TI-83+Keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-83+Keymap.png -------------------------------------------------------------------------------- /gui/TI-83+SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-83+SE.png -------------------------------------------------------------------------------- /gui/TI-83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-83.png -------------------------------------------------------------------------------- /gui/TI-83Keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-83Keymap.png -------------------------------------------------------------------------------- /gui/TI-Icons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI-Icons.bmp -------------------------------------------------------------------------------- /gui/TI83P.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI83P.bmp -------------------------------------------------------------------------------- /gui/TI83PSE.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/TI83PSE.bmp -------------------------------------------------------------------------------- /gui/Wabbitemu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/Wabbitemu.rc -------------------------------------------------------------------------------- /gui/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/WhatsNew.txt -------------------------------------------------------------------------------- /gui/back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/back.bmp -------------------------------------------------------------------------------- /gui/break.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/break.bmp -------------------------------------------------------------------------------- /gui/buttondownleft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/buttondownleft.bmp -------------------------------------------------------------------------------- /gui/buttondownmiddle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/buttondownmiddle.bmp -------------------------------------------------------------------------------- /gui/buttondownright.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/buttondownright.bmp -------------------------------------------------------------------------------- /gui/buttonframe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/buttonframe.bmp -------------------------------------------------------------------------------- /gui/buttonframeleft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/buttonframeleft.bmp -------------------------------------------------------------------------------- /gui/buttonframemiddle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/buttonframemiddle.bmp -------------------------------------------------------------------------------- /gui/chevron.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/chevron.bmp -------------------------------------------------------------------------------- /gui/chevron7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/chevron7.bmp -------------------------------------------------------------------------------- /gui/displayoptionstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/displayoptionstest.c -------------------------------------------------------------------------------- /gui/displayoptionstest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/displayoptionstest.h -------------------------------------------------------------------------------- /gui/downarrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/downarrow.bmp -------------------------------------------------------------------------------- /gui/downarrow7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/downarrow7.bmp -------------------------------------------------------------------------------- /gui/expandpanebuttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/expandpanebuttons.bmp -------------------------------------------------------------------------------- /gui/goto.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/goto.bmp -------------------------------------------------------------------------------- /gui/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/gui.c -------------------------------------------------------------------------------- /gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/gui.h -------------------------------------------------------------------------------- /gui/guibuttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guibuttons.c -------------------------------------------------------------------------------- /gui/guibuttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guibuttons.h -------------------------------------------------------------------------------- /gui/guicommandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guicommandline.c -------------------------------------------------------------------------------- /gui/guicommandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guicommandline.h -------------------------------------------------------------------------------- /gui/guicontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guicontext.c -------------------------------------------------------------------------------- /gui/guicontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guicontext.h -------------------------------------------------------------------------------- /gui/guicutout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guicutout.c -------------------------------------------------------------------------------- /gui/guicutout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guicutout.h -------------------------------------------------------------------------------- /gui/guidebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guidebug.c -------------------------------------------------------------------------------- /gui/guidebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guidebug.h -------------------------------------------------------------------------------- /gui/guidetached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guidetached.c -------------------------------------------------------------------------------- /gui/guidetached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guidetached.h -------------------------------------------------------------------------------- /gui/guidialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guidialog.c -------------------------------------------------------------------------------- /gui/guidialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guidialog.h -------------------------------------------------------------------------------- /gui/guifilepreview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guifilepreview.c -------------------------------------------------------------------------------- /gui/guifilepreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guifilepreview.h -------------------------------------------------------------------------------- /gui/guiglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiglow.c -------------------------------------------------------------------------------- /gui/guiglow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiglow.h -------------------------------------------------------------------------------- /gui/guikeylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guikeylist.c -------------------------------------------------------------------------------- /gui/guikeylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guikeylist.h -------------------------------------------------------------------------------- /gui/guilcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guilcd.c -------------------------------------------------------------------------------- /gui/guilcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guilcd.h -------------------------------------------------------------------------------- /gui/guiopenfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiopenfile.c -------------------------------------------------------------------------------- /gui/guiopenfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiopenfile.h -------------------------------------------------------------------------------- /gui/guioptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guioptions.c -------------------------------------------------------------------------------- /gui/guioptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guioptions.h -------------------------------------------------------------------------------- /gui/guiresource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiresource.c -------------------------------------------------------------------------------- /gui/guiresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiresource.h -------------------------------------------------------------------------------- /gui/guisavestate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guisavestate.c -------------------------------------------------------------------------------- /gui/guisavestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guisavestate.h -------------------------------------------------------------------------------- /gui/guisize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guisize.c -------------------------------------------------------------------------------- /gui/guisize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guisize.h -------------------------------------------------------------------------------- /gui/guiskin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiskin.c -------------------------------------------------------------------------------- /gui/guiskin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiskin.h -------------------------------------------------------------------------------- /gui/guispeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guispeed.c -------------------------------------------------------------------------------- /gui/guispeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guispeed.h -------------------------------------------------------------------------------- /gui/guiteacherview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiteacherview.c -------------------------------------------------------------------------------- /gui/guiteacherview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiteacherview.h -------------------------------------------------------------------------------- /gui/guiupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiupdate.c -------------------------------------------------------------------------------- /gui/guiupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiupdate.h -------------------------------------------------------------------------------- /gui/guivartree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guivartree.c -------------------------------------------------------------------------------- /gui/guivartree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guivartree.h -------------------------------------------------------------------------------- /gui/guiwizard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiwizard.c -------------------------------------------------------------------------------- /gui/guiwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/guiwizard.h -------------------------------------------------------------------------------- /gui/homescreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/homescreen.bmp -------------------------------------------------------------------------------- /gui/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/left.bmp -------------------------------------------------------------------------------- /gui/left7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/left7.bmp -------------------------------------------------------------------------------- /gui/linksprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/linksprites.h -------------------------------------------------------------------------------- /gui/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/map.h -------------------------------------------------------------------------------- /gui/membreak.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/membreak.bmp -------------------------------------------------------------------------------- /gui/osdownloadcallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/osdownloadcallback.h -------------------------------------------------------------------------------- /gui/pngexport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/pngexport.c -------------------------------------------------------------------------------- /gui/pngexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/pngexport.h -------------------------------------------------------------------------------- /gui/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/registry.c -------------------------------------------------------------------------------- /gui/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/registry.h -------------------------------------------------------------------------------- /gui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/resource.h -------------------------------------------------------------------------------- /gui/right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/right.bmp -------------------------------------------------------------------------------- /gui/right7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/right7.bmp -------------------------------------------------------------------------------- /gui/run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/run.bmp -------------------------------------------------------------------------------- /gui/small_close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/small_close.bmp -------------------------------------------------------------------------------- /gui/step.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/step.bmp -------------------------------------------------------------------------------- /gui/stepover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/stepover.bmp -------------------------------------------------------------------------------- /gui/stop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/stop.bmp -------------------------------------------------------------------------------- /gui/ti-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-81.png -------------------------------------------------------------------------------- /gui/ti-81keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-81keymap.png -------------------------------------------------------------------------------- /gui/ti-82keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-82keymap.png -------------------------------------------------------------------------------- /gui/ti-84+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-84+.png -------------------------------------------------------------------------------- /gui/ti-84+cse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-84+cse.png -------------------------------------------------------------------------------- /gui/ti-84+csekeymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-84+csekeymap.png -------------------------------------------------------------------------------- /gui/ti-84+se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-84+se.png -------------------------------------------------------------------------------- /gui/ti-84+sekeymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-84+sekeymap.png -------------------------------------------------------------------------------- /gui/ti-85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-85.png -------------------------------------------------------------------------------- /gui/ti-85Keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-85Keymap.png -------------------------------------------------------------------------------- /gui/ti-86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-86.png -------------------------------------------------------------------------------- /gui/ti-86keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/ti-86keymap.png -------------------------------------------------------------------------------- /gui/tsmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/tsmall.ico -------------------------------------------------------------------------------- /gui/wabbitemu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/gui/wabbitemu.ico -------------------------------------------------------------------------------- /hardware/81hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/81hw.c -------------------------------------------------------------------------------- /hardware/81hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/81hw.h -------------------------------------------------------------------------------- /hardware/83hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/83hw.c -------------------------------------------------------------------------------- /hardware/83hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/83hw.h -------------------------------------------------------------------------------- /hardware/83phw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/83phw.c -------------------------------------------------------------------------------- /hardware/83phw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/83phw.h -------------------------------------------------------------------------------- /hardware/83psehw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/83psehw.c -------------------------------------------------------------------------------- /hardware/83psehw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/83psehw.h -------------------------------------------------------------------------------- /hardware/86hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/86hw.c -------------------------------------------------------------------------------- /hardware/86hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/86hw.h -------------------------------------------------------------------------------- /hardware/colorlcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/colorlcd.c -------------------------------------------------------------------------------- /hardware/colorlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/colorlcd.h -------------------------------------------------------------------------------- /hardware/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/keys.c -------------------------------------------------------------------------------- /hardware/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/keys.h -------------------------------------------------------------------------------- /hardware/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/lcd.c -------------------------------------------------------------------------------- /hardware/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/lcd.h -------------------------------------------------------------------------------- /hardware/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/link.c -------------------------------------------------------------------------------- /hardware/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/link.h -------------------------------------------------------------------------------- /hardware/ti_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/hardware/ti_stdint.h -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | Test html file -------------------------------------------------------------------------------- /interface/CCalcAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CCalcAddress.cpp -------------------------------------------------------------------------------- /interface/CCalcAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CCalcAddress.h -------------------------------------------------------------------------------- /interface/CKeypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CKeypad.cpp -------------------------------------------------------------------------------- /interface/CKeypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CKeypad.h -------------------------------------------------------------------------------- /interface/CLCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CLCD.cpp -------------------------------------------------------------------------------- /interface/CLCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CLCD.h -------------------------------------------------------------------------------- /interface/CLabelServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CLabelServer.cpp -------------------------------------------------------------------------------- /interface/CLabelServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CLabelServer.h -------------------------------------------------------------------------------- /interface/CPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CPage.cpp -------------------------------------------------------------------------------- /interface/CPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CPage.h -------------------------------------------------------------------------------- /interface/CPio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CPio.cpp -------------------------------------------------------------------------------- /interface/CPio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CPio.h -------------------------------------------------------------------------------- /interface/CTIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CTIApplication.h -------------------------------------------------------------------------------- /interface/CTIApplicationCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CTIApplicationCollection.cpp -------------------------------------------------------------------------------- /interface/CTISymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CTISymbol.cpp -------------------------------------------------------------------------------- /interface/CTISymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CTISymbol.h -------------------------------------------------------------------------------- /interface/CWabbitemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CWabbitemu.cpp -------------------------------------------------------------------------------- /interface/CWabbitemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CWabbitemu.h -------------------------------------------------------------------------------- /interface/CZ80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CZ80.cpp -------------------------------------------------------------------------------- /interface/CZ80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/CZ80.h -------------------------------------------------------------------------------- /interface/Wabbitemu.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/Wabbitemu.def -------------------------------------------------------------------------------- /interface/Wabbitemu.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/Wabbitemu.idl -------------------------------------------------------------------------------- /interface/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/calc.c -------------------------------------------------------------------------------- /interface/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/calc.h -------------------------------------------------------------------------------- /interface/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/state.c -------------------------------------------------------------------------------- /interface/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/interface/state.h -------------------------------------------------------------------------------- /lib/x64/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/lib/x64/zlibstat.lib -------------------------------------------------------------------------------- /lib/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/lib/zlibstat.lib -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/stdafx.h -------------------------------------------------------------------------------- /test.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/test.vbs -------------------------------------------------------------------------------- /utilities/SendFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/SendFile.h -------------------------------------------------------------------------------- /utilities/avifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/avifile.cpp -------------------------------------------------------------------------------- /utilities/avifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/avifile.h -------------------------------------------------------------------------------- /utilities/bcalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/bcalls.h -------------------------------------------------------------------------------- /utilities/breakpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/breakpoint.c -------------------------------------------------------------------------------- /utilities/breakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/breakpoint.h -------------------------------------------------------------------------------- /utilities/expandpane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/expandpane.c -------------------------------------------------------------------------------- /utilities/expandpane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/expandpane.h -------------------------------------------------------------------------------- /utilities/exportvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/exportvar.c -------------------------------------------------------------------------------- /utilities/exportvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/exportvar.h -------------------------------------------------------------------------------- /utilities/fileutilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/fileutilities.c -------------------------------------------------------------------------------- /utilities/fileutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/fileutilities.h -------------------------------------------------------------------------------- /utilities/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/flags.h -------------------------------------------------------------------------------- /utilities/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/ftp.c -------------------------------------------------------------------------------- /utilities/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/ftp.h -------------------------------------------------------------------------------- /utilities/gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/gif.cpp -------------------------------------------------------------------------------- /utilities/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/gif.h -------------------------------------------------------------------------------- /utilities/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/ioapi.c -------------------------------------------------------------------------------- /utilities/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/ioapi.h -------------------------------------------------------------------------------- /utilities/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/iowin32.c -------------------------------------------------------------------------------- /utilities/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/iowin32.h -------------------------------------------------------------------------------- /utilities/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/label.c -------------------------------------------------------------------------------- /utilities/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/label.h -------------------------------------------------------------------------------- /utilities/linksendvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/linksendvar.c -------------------------------------------------------------------------------- /utilities/linksendvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/linksendvar.h -------------------------------------------------------------------------------- /utilities/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/miniunz.c -------------------------------------------------------------------------------- /utilities/miniunz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/miniunz.h -------------------------------------------------------------------------------- /utilities/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/minizip.c -------------------------------------------------------------------------------- /utilities/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/print.c -------------------------------------------------------------------------------- /utilities/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/print.h -------------------------------------------------------------------------------- /utilities/savestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/savestate.cpp -------------------------------------------------------------------------------- /utilities/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/savestate.h -------------------------------------------------------------------------------- /utilities/screenshothandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/screenshothandle.c -------------------------------------------------------------------------------- /utilities/screenshothandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/screenshothandle.h -------------------------------------------------------------------------------- /utilities/sendfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/sendfile.c -------------------------------------------------------------------------------- /utilities/sendfileswindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/sendfileswindows.cpp -------------------------------------------------------------------------------- /utilities/sendfileswindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/sendfileswindows.h -------------------------------------------------------------------------------- /utilities/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/sound.c -------------------------------------------------------------------------------- /utilities/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/sound.h -------------------------------------------------------------------------------- /utilities/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/unzip.c -------------------------------------------------------------------------------- /utilities/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/unzip.h -------------------------------------------------------------------------------- /utilities/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/var.c -------------------------------------------------------------------------------- /utilities/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/var.h -------------------------------------------------------------------------------- /utilities/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/zconf.h -------------------------------------------------------------------------------- /utilities/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/zip.c -------------------------------------------------------------------------------- /utilities/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/zip.h -------------------------------------------------------------------------------- /utilities/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/zlib.h -------------------------------------------------------------------------------- /utilities/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sputt/wabbitemu/HEAD/utilities/zpipe.c --------------------------------------------------------------------------------