├── .gitignore ├── CMakeLists.txt ├── Main.qml ├── README.md ├── docs ├── 8051.pdf ├── 8080.pdf ├── 8086.pdf ├── README.md ├── arm7tdmi.pdf ├── avr.pdf ├── gbctr.pdf ├── h83.pdf ├── marc4.pdf ├── pic1670.pdf ├── pic16c5x.pdf ├── s2000.pdf ├── saturn.pdf ├── tlcs.pdf ├── tms320c28x.pdf ├── ucom43.pdf ├── z8.pdf └── z80.pdf ├── gagrader.cpp ├── gagrader.h ├── gagrader8051jmptable.cpp ├── gagrader8051jmptable.h ├── gagrader8051pushpop.cpp ├── gagrader8051pushpop.h ├── gagradergameboy.cpp ├── gagradergameboy.h ├── gagraderjumptargets.cpp ├── gagraderjumptargets.h ├── gagradermovtarget.cpp ├── gagradermovtarget.h ├── gagradervalidops.cpp ├── gagradervalidops.h ├── gagraderz80.cpp ├── gagraderz80.h ├── gainstruction.cpp ├── gainstruction.h ├── galang6502.cpp ├── galang6502.h ├── galang6805.cpp ├── galang6805.h ├── galang8051.cpp ├── galang8051.h ├── galang8080.cpp ├── galang8080.h ├── galang8086.cpp ├── galang8086.h ├── galangarm7tdmi.cpp ├── galangarm7tdmi.h ├── galangchip8.cpp ├── galangchip8.h ├── galangfcard.cpp ├── galangfcard.h ├── galangh83.cpp ├── galangh83.h ├── galangmarc4.cpp ├── galangmarc4.h ├── galangpic16c5x.cpp ├── galangpic16c5x.h ├── galangs2000.cpp ├── galangs2000.h ├── galangsm83.cpp ├── galangsm83.h ├── galangst7.cpp ├── galangst7.h ├── galangti80.cpp ├── galangti80.h ├── galangtlcs47.cpp ├── galangtlcs47.h ├── galangtms320c28x.cpp ├── galangtms320c28x.h ├── galanguage.cpp ├── galanguage.h ├── galangucom43.cpp ├── galangucom43.h ├── galangz8.cpp ├── galangz8.h ├── galangz80.cpp ├── galangz80.h ├── galexer.cpp ├── galexer.h ├── galisting.cpp ├── galisting.h ├── galistingc.cpp ├── galistingc.h ├── galistingdefault.cpp ├── galistingdefault.h ├── galistingga.cpp ├── galistingga.h ├── galistinggo.cpp ├── galistinggo.h ├── galistinghex.cpp ├── galistinghex.h ├── galistingmarkdown.cpp ├── galistingmarkdown.h ├── galistingnasm.cpp ├── galistingnasm.h ├── galistingyarax.cpp ├── galistingyarax.h ├── gamnemonic.cpp ├── gamnemonic.h ├── gaobject.cpp ├── gaobject.h ├── gaparameter.cpp ├── gaparameter.h ├── gaparser.cpp ├── gaparser.h ├── gareplxx.cpp ├── gareplxx.h ├── gasymboltable.cpp ├── gasymboltable.h ├── gatoken.cpp ├── gatoken.h ├── goodasm.cpp ├── goodasm.h ├── main.cpp ├── maingui.cpp └── tests ├── 6502 ├── Makefile ├── basic.bin ├── demo.asm ├── error.asm ├── error2.asm ├── kernal.bin ├── nanochess │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── demo10_1.asm │ ├── demo10_2.asm │ ├── demo10_3.asm │ ├── demo10_4_1.asm │ ├── demo10_4_2.asm │ ├── demo1_4.asm │ ├── demo1_8.asm │ ├── demo2_1.asm │ ├── demo2_2.asm │ ├── demo2_3.asm │ ├── demo2_4.asm │ ├── demo2_5.asm │ ├── demo3_1.asm │ ├── demo3_1.png │ ├── demo3_2.asm │ ├── demo3_3.asm │ ├── demo3_4.asm │ ├── demo3_5.asm │ ├── demo3_6.asm │ ├── demo3_7.asm │ ├── demo3_8.asm │ ├── demo4_1.asm │ ├── demo4_2.asm │ ├── demo4_3.asm │ ├── demo4_4.asm │ ├── demo4_5.asm │ ├── demo4_6.asm │ ├── demo4_7.asm │ ├── demo4_8.asm │ ├── demo4_9.asm │ ├── demo5_1.asm │ ├── demo6_1.asm │ ├── demo7_1.asm │ ├── demo8_1.asm │ ├── demo9_1.asm │ ├── md5.txt │ ├── palette.asm │ └── vcs.asm ├── parser.asm ├── simple.s └── undefined.asm ├── 6805 ├── .gitignore ├── Makefile ├── nipperpatch.asm └── nippertool.png ├── 8051 ├── Makefile ├── match.asm └── simple.s ├── 8080 ├── .gitignore ├── Makefile ├── TST8080.ASM ├── TST8080.COM └── TST8080.PRN ├── Makefile ├── app └── goodasmapp.png ├── arm7tdmi ├── Makefile └── test.asm ├── chip8 ├── Makefile ├── README.md ├── hex2dec-bin.asm ├── mary-bin.asm └── timendus │ ├── .gitignore │ ├── 1-chip8-logo.8o │ ├── 1-chip8-logo.asm │ ├── 1-chip8-logo.ch8 │ ├── 2-ibm-logo.8o │ ├── 2-ibm-logo.ch8 │ ├── 3-corax+.8o │ ├── 3-corax+.ch8 │ ├── 4-flags.8o │ ├── 4-flags.ch8 │ ├── 5-quirks.8o │ ├── 5-quirks.ch8 │ ├── 6-keypad.8o │ ├── 6-keypad.ch8 │ ├── 7-beep.8o │ ├── 7-beep.ch8 │ ├── 8-scrolling.8o │ ├── 8-scrolling.ch8 │ ├── Makefile │ ├── README.md │ └── md5.txt ├── fcard ├── .gitignore ├── Makefile ├── README.md ├── exploit.asm ├── famous99-1100.asm ├── famous99-1a10.asm ├── md5.txt └── sample.cor ├── marc4 ├── Makefile └── sample.s ├── pic16c5x ├── Makefile └── basicstamp1-pic16c56.bin ├── s2000 ├── Makefile ├── README.md ├── fibonacci.bin ├── fibonacci.emz ├── guesses.s ├── hello.bin └── hello.emz ├── sm83 ├── .gitignore ├── Makefile ├── README.md ├── font.chr ├── gameboy.asm ├── hello.asm └── hello.png ├── tlcs47 ├── Makefile └── test.asm ├── ucom43 ├── Makefile └── ffred.bin ├── weird ├── Makefile ├── badquotes.asm ├── dataandlabels.asm ├── disassemble.asm ├── earlyend.txt └── missingcomments.asm └── z80 ├── Makefile ├── ab4.86p ├── md5.txt └── zsh-hello.asm /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.user 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/Main.qml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/README.md -------------------------------------------------------------------------------- /docs/8051.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/8051.pdf -------------------------------------------------------------------------------- /docs/8080.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/8080.pdf -------------------------------------------------------------------------------- /docs/8086.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/8086.pdf -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/arm7tdmi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/arm7tdmi.pdf -------------------------------------------------------------------------------- /docs/avr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/avr.pdf -------------------------------------------------------------------------------- /docs/gbctr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/gbctr.pdf -------------------------------------------------------------------------------- /docs/h83.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/h83.pdf -------------------------------------------------------------------------------- /docs/marc4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/marc4.pdf -------------------------------------------------------------------------------- /docs/pic1670.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/pic1670.pdf -------------------------------------------------------------------------------- /docs/pic16c5x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/pic16c5x.pdf -------------------------------------------------------------------------------- /docs/s2000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/s2000.pdf -------------------------------------------------------------------------------- /docs/saturn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/saturn.pdf -------------------------------------------------------------------------------- /docs/tlcs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/tlcs.pdf -------------------------------------------------------------------------------- /docs/tms320c28x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/tms320c28x.pdf -------------------------------------------------------------------------------- /docs/ucom43.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/ucom43.pdf -------------------------------------------------------------------------------- /docs/z8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/z8.pdf -------------------------------------------------------------------------------- /docs/z80.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/docs/z80.pdf -------------------------------------------------------------------------------- /gagrader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagrader.cpp -------------------------------------------------------------------------------- /gagrader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagrader.h -------------------------------------------------------------------------------- /gagrader8051jmptable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagrader8051jmptable.cpp -------------------------------------------------------------------------------- /gagrader8051jmptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagrader8051jmptable.h -------------------------------------------------------------------------------- /gagrader8051pushpop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagrader8051pushpop.cpp -------------------------------------------------------------------------------- /gagrader8051pushpop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagrader8051pushpop.h -------------------------------------------------------------------------------- /gagradergameboy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagradergameboy.cpp -------------------------------------------------------------------------------- /gagradergameboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagradergameboy.h -------------------------------------------------------------------------------- /gagraderjumptargets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagraderjumptargets.cpp -------------------------------------------------------------------------------- /gagraderjumptargets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagraderjumptargets.h -------------------------------------------------------------------------------- /gagradermovtarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagradermovtarget.cpp -------------------------------------------------------------------------------- /gagradermovtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagradermovtarget.h -------------------------------------------------------------------------------- /gagradervalidops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagradervalidops.cpp -------------------------------------------------------------------------------- /gagradervalidops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagradervalidops.h -------------------------------------------------------------------------------- /gagraderz80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagraderz80.cpp -------------------------------------------------------------------------------- /gagraderz80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gagraderz80.h -------------------------------------------------------------------------------- /gainstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gainstruction.cpp -------------------------------------------------------------------------------- /gainstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gainstruction.h -------------------------------------------------------------------------------- /galang6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang6502.cpp -------------------------------------------------------------------------------- /galang6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang6502.h -------------------------------------------------------------------------------- /galang6805.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang6805.cpp -------------------------------------------------------------------------------- /galang6805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang6805.h -------------------------------------------------------------------------------- /galang8051.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang8051.cpp -------------------------------------------------------------------------------- /galang8051.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang8051.h -------------------------------------------------------------------------------- /galang8080.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang8080.cpp -------------------------------------------------------------------------------- /galang8080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang8080.h -------------------------------------------------------------------------------- /galang8086.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang8086.cpp -------------------------------------------------------------------------------- /galang8086.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galang8086.h -------------------------------------------------------------------------------- /galangarm7tdmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangarm7tdmi.cpp -------------------------------------------------------------------------------- /galangarm7tdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangarm7tdmi.h -------------------------------------------------------------------------------- /galangchip8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangchip8.cpp -------------------------------------------------------------------------------- /galangchip8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangchip8.h -------------------------------------------------------------------------------- /galangfcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangfcard.cpp -------------------------------------------------------------------------------- /galangfcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangfcard.h -------------------------------------------------------------------------------- /galangh83.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangh83.cpp -------------------------------------------------------------------------------- /galangh83.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangh83.h -------------------------------------------------------------------------------- /galangmarc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangmarc4.cpp -------------------------------------------------------------------------------- /galangmarc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangmarc4.h -------------------------------------------------------------------------------- /galangpic16c5x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangpic16c5x.cpp -------------------------------------------------------------------------------- /galangpic16c5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangpic16c5x.h -------------------------------------------------------------------------------- /galangs2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangs2000.cpp -------------------------------------------------------------------------------- /galangs2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangs2000.h -------------------------------------------------------------------------------- /galangsm83.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangsm83.cpp -------------------------------------------------------------------------------- /galangsm83.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangsm83.h -------------------------------------------------------------------------------- /galangst7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangst7.cpp -------------------------------------------------------------------------------- /galangst7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangst7.h -------------------------------------------------------------------------------- /galangti80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangti80.cpp -------------------------------------------------------------------------------- /galangti80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangti80.h -------------------------------------------------------------------------------- /galangtlcs47.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangtlcs47.cpp -------------------------------------------------------------------------------- /galangtlcs47.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangtlcs47.h -------------------------------------------------------------------------------- /galangtms320c28x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangtms320c28x.cpp -------------------------------------------------------------------------------- /galangtms320c28x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangtms320c28x.h -------------------------------------------------------------------------------- /galanguage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galanguage.cpp -------------------------------------------------------------------------------- /galanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galanguage.h -------------------------------------------------------------------------------- /galangucom43.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangucom43.cpp -------------------------------------------------------------------------------- /galangucom43.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangucom43.h -------------------------------------------------------------------------------- /galangz8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangz8.cpp -------------------------------------------------------------------------------- /galangz8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangz8.h -------------------------------------------------------------------------------- /galangz80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangz80.cpp -------------------------------------------------------------------------------- /galangz80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galangz80.h -------------------------------------------------------------------------------- /galexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galexer.cpp -------------------------------------------------------------------------------- /galexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galexer.h -------------------------------------------------------------------------------- /galisting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galisting.cpp -------------------------------------------------------------------------------- /galisting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galisting.h -------------------------------------------------------------------------------- /galistingc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingc.cpp -------------------------------------------------------------------------------- /galistingc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingc.h -------------------------------------------------------------------------------- /galistingdefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingdefault.cpp -------------------------------------------------------------------------------- /galistingdefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingdefault.h -------------------------------------------------------------------------------- /galistingga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingga.cpp -------------------------------------------------------------------------------- /galistingga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingga.h -------------------------------------------------------------------------------- /galistinggo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistinggo.cpp -------------------------------------------------------------------------------- /galistinggo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistinggo.h -------------------------------------------------------------------------------- /galistinghex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistinghex.cpp -------------------------------------------------------------------------------- /galistinghex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistinghex.h -------------------------------------------------------------------------------- /galistingmarkdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingmarkdown.cpp -------------------------------------------------------------------------------- /galistingmarkdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingmarkdown.h -------------------------------------------------------------------------------- /galistingnasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingnasm.cpp -------------------------------------------------------------------------------- /galistingnasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingnasm.h -------------------------------------------------------------------------------- /galistingyarax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingyarax.cpp -------------------------------------------------------------------------------- /galistingyarax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/galistingyarax.h -------------------------------------------------------------------------------- /gamnemonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gamnemonic.cpp -------------------------------------------------------------------------------- /gamnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gamnemonic.h -------------------------------------------------------------------------------- /gaobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gaobject.cpp -------------------------------------------------------------------------------- /gaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gaobject.h -------------------------------------------------------------------------------- /gaparameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gaparameter.cpp -------------------------------------------------------------------------------- /gaparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gaparameter.h -------------------------------------------------------------------------------- /gaparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gaparser.cpp -------------------------------------------------------------------------------- /gaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gaparser.h -------------------------------------------------------------------------------- /gareplxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gareplxx.cpp -------------------------------------------------------------------------------- /gareplxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gareplxx.h -------------------------------------------------------------------------------- /gasymboltable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gasymboltable.cpp -------------------------------------------------------------------------------- /gasymboltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gasymboltable.h -------------------------------------------------------------------------------- /gatoken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gatoken.cpp -------------------------------------------------------------------------------- /gatoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/gatoken.h -------------------------------------------------------------------------------- /goodasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/goodasm.cpp -------------------------------------------------------------------------------- /goodasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/goodasm.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/main.cpp -------------------------------------------------------------------------------- /maingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/maingui.cpp -------------------------------------------------------------------------------- /tests/6502/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/Makefile -------------------------------------------------------------------------------- /tests/6502/basic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/basic.bin -------------------------------------------------------------------------------- /tests/6502/demo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/demo.asm -------------------------------------------------------------------------------- /tests/6502/error.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/error.asm -------------------------------------------------------------------------------- /tests/6502/error2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/error2.asm -------------------------------------------------------------------------------- /tests/6502/kernal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/kernal.bin -------------------------------------------------------------------------------- /tests/6502/nanochess/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | -------------------------------------------------------------------------------- /tests/6502/nanochess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/Makefile -------------------------------------------------------------------------------- /tests/6502/nanochess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/README.md -------------------------------------------------------------------------------- /tests/6502/nanochess/demo10_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo10_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo10_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo10_2.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo10_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo10_3.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo10_4_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo10_4_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo10_4_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo10_4_2.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo1_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo1_4.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo1_8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo1_8.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo2_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo2_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo2_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo2_2.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo2_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo2_3.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo2_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo2_4.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo2_5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo2_5.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_1.png -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_2.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_3.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_4.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_5.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_6.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_7.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo3_8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo3_8.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_2.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_3.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_4.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_5.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_6.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_7.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_8.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo4_9.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo4_9.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo5_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo5_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo6_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo6_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo7_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo7_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo8_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo8_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/demo9_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/demo9_1.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/md5.txt -------------------------------------------------------------------------------- /tests/6502/nanochess/palette.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/palette.asm -------------------------------------------------------------------------------- /tests/6502/nanochess/vcs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/nanochess/vcs.asm -------------------------------------------------------------------------------- /tests/6502/parser.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/parser.asm -------------------------------------------------------------------------------- /tests/6502/simple.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/simple.s -------------------------------------------------------------------------------- /tests/6502/undefined.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6502/undefined.asm -------------------------------------------------------------------------------- /tests/6805/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6805/.gitignore -------------------------------------------------------------------------------- /tests/6805/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6805/Makefile -------------------------------------------------------------------------------- /tests/6805/nipperpatch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6805/nipperpatch.asm -------------------------------------------------------------------------------- /tests/6805/nippertool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/6805/nippertool.png -------------------------------------------------------------------------------- /tests/8051/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8051/Makefile -------------------------------------------------------------------------------- /tests/8051/match.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8051/match.asm -------------------------------------------------------------------------------- /tests/8051/simple.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8051/simple.s -------------------------------------------------------------------------------- /tests/8080/.gitignore: -------------------------------------------------------------------------------- 1 | *.dis 2 | -------------------------------------------------------------------------------- /tests/8080/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8080/Makefile -------------------------------------------------------------------------------- /tests/8080/TST8080.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8080/TST8080.ASM -------------------------------------------------------------------------------- /tests/8080/TST8080.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8080/TST8080.COM -------------------------------------------------------------------------------- /tests/8080/TST8080.PRN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/8080/TST8080.PRN -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/app/goodasmapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/app/goodasmapp.png -------------------------------------------------------------------------------- /tests/arm7tdmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/arm7tdmi/Makefile -------------------------------------------------------------------------------- /tests/arm7tdmi/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/arm7tdmi/test.asm -------------------------------------------------------------------------------- /tests/chip8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/Makefile -------------------------------------------------------------------------------- /tests/chip8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/README.md -------------------------------------------------------------------------------- /tests/chip8/hex2dec-bin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/hex2dec-bin.asm -------------------------------------------------------------------------------- /tests/chip8/mary-bin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/mary-bin.asm -------------------------------------------------------------------------------- /tests/chip8/timendus/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *~ 3 | -------------------------------------------------------------------------------- /tests/chip8/timendus/1-chip8-logo.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/1-chip8-logo.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/1-chip8-logo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/1-chip8-logo.asm -------------------------------------------------------------------------------- /tests/chip8/timendus/1-chip8-logo.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/1-chip8-logo.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/2-ibm-logo.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/2-ibm-logo.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/2-ibm-logo.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/2-ibm-logo.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/3-corax+.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/3-corax+.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/3-corax+.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/3-corax+.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/4-flags.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/4-flags.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/4-flags.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/4-flags.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/5-quirks.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/5-quirks.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/5-quirks.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/5-quirks.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/6-keypad.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/6-keypad.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/6-keypad.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/6-keypad.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/7-beep.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/7-beep.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/7-beep.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/7-beep.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/8-scrolling.8o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/8-scrolling.8o -------------------------------------------------------------------------------- /tests/chip8/timendus/8-scrolling.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/8-scrolling.ch8 -------------------------------------------------------------------------------- /tests/chip8/timendus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/Makefile -------------------------------------------------------------------------------- /tests/chip8/timendus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/README.md -------------------------------------------------------------------------------- /tests/chip8/timendus/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/chip8/timendus/md5.txt -------------------------------------------------------------------------------- /tests/fcard/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *~ 3 | sample*.asm 4 | *.rule 5 | -------------------------------------------------------------------------------- /tests/fcard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/Makefile -------------------------------------------------------------------------------- /tests/fcard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/README.md -------------------------------------------------------------------------------- /tests/fcard/exploit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/exploit.asm -------------------------------------------------------------------------------- /tests/fcard/famous99-1100.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/famous99-1100.asm -------------------------------------------------------------------------------- /tests/fcard/famous99-1a10.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/famous99-1a10.asm -------------------------------------------------------------------------------- /tests/fcard/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/md5.txt -------------------------------------------------------------------------------- /tests/fcard/sample.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/fcard/sample.cor -------------------------------------------------------------------------------- /tests/marc4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/marc4/Makefile -------------------------------------------------------------------------------- /tests/marc4/sample.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/marc4/sample.s -------------------------------------------------------------------------------- /tests/pic16c5x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/pic16c5x/Makefile -------------------------------------------------------------------------------- /tests/pic16c5x/basicstamp1-pic16c56.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/pic16c5x/basicstamp1-pic16c56.bin -------------------------------------------------------------------------------- /tests/s2000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/Makefile -------------------------------------------------------------------------------- /tests/s2000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/README.md -------------------------------------------------------------------------------- /tests/s2000/fibonacci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/fibonacci.bin -------------------------------------------------------------------------------- /tests/s2000/fibonacci.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/fibonacci.emz -------------------------------------------------------------------------------- /tests/s2000/guesses.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/guesses.s -------------------------------------------------------------------------------- /tests/s2000/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/hello.bin -------------------------------------------------------------------------------- /tests/s2000/hello.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/s2000/hello.emz -------------------------------------------------------------------------------- /tests/sm83/.gitignore: -------------------------------------------------------------------------------- 1 | hello 2 | *.sav 3 | -------------------------------------------------------------------------------- /tests/sm83/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/sm83/Makefile -------------------------------------------------------------------------------- /tests/sm83/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/sm83/README.md -------------------------------------------------------------------------------- /tests/sm83/font.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/sm83/font.chr -------------------------------------------------------------------------------- /tests/sm83/gameboy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/sm83/gameboy.asm -------------------------------------------------------------------------------- /tests/sm83/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/sm83/hello.asm -------------------------------------------------------------------------------- /tests/sm83/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/sm83/hello.png -------------------------------------------------------------------------------- /tests/tlcs47/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/tlcs47/Makefile -------------------------------------------------------------------------------- /tests/tlcs47/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/tlcs47/test.asm -------------------------------------------------------------------------------- /tests/ucom43/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/ucom43/Makefile -------------------------------------------------------------------------------- /tests/ucom43/ffred.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/ucom43/ffred.bin -------------------------------------------------------------------------------- /tests/weird/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/weird/Makefile -------------------------------------------------------------------------------- /tests/weird/badquotes.asm: -------------------------------------------------------------------------------- 1 | 2 | 3 | ;; Poorly quantified 4 | .db "unfinished 5 | 6 | -------------------------------------------------------------------------------- /tests/weird/dataandlabels.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/weird/dataandlabels.asm -------------------------------------------------------------------------------- /tests/weird/disassemble.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/weird/disassemble.asm -------------------------------------------------------------------------------- /tests/weird/earlyend.txt: -------------------------------------------------------------------------------- 1 | .lang 6805 2 | . 3 | -------------------------------------------------------------------------------- /tests/weird/missingcomments.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/weird/missingcomments.asm -------------------------------------------------------------------------------- /tests/z80/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/z80/Makefile -------------------------------------------------------------------------------- /tests/z80/ab4.86p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/z80/ab4.86p -------------------------------------------------------------------------------- /tests/z80/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/z80/md5.txt -------------------------------------------------------------------------------- /tests/z80/zsh-hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travisgoodspeed/goodasm/HEAD/tests/z80/zsh-hello.asm --------------------------------------------------------------------------------