├── .gitignore ├── BSD ├── bin │ ├── fasm │ └── listing └── share │ ├── applications │ └── sasm.desktop │ ├── doc │ └── sasm │ │ ├── changelog.gz │ │ └── copyright │ └── sasm │ ├── NASM │ └── macro.c │ ├── Projects │ ├── FASMHello.asm │ ├── FASMHellox64.asm │ ├── FASMSum.asm │ ├── FASMSumx64.asm │ ├── GASHello.asm │ ├── GASHellox64.asm │ ├── GASSum.asm │ ├── GASSumx64.asm │ ├── NASMHello.asm │ ├── NASMHelloIoInc.asm │ ├── NASMHellox64.asm │ ├── NASMSum.asm │ ├── NASMSumIoInc.asm │ └── NASMSumx64.asm │ ├── include │ ├── io.inc │ └── io64.inc │ ├── keys.ini │ └── sasm.png ├── COPYING ├── COPYING_RUS ├── Help.qrc ├── Images.qrc ├── Languages.qrc ├── Linux ├── bin │ ├── fasm │ └── listing └── share │ ├── applications │ └── sasm.desktop │ ├── doc │ └── sasm │ │ ├── changelog.gz │ │ └── copyright │ └── sasm │ ├── NASM │ └── macro.c │ ├── Projects │ ├── FASMHello.asm │ ├── FASMHellox64.asm │ ├── FASMSum.asm │ ├── FASMSumx64.asm │ ├── GASHello.asm │ ├── GASHellox64.asm │ ├── GASSum.asm │ ├── GASSumx64.asm │ ├── NASMHello.asm │ ├── NASMHelloIoInc.asm │ ├── NASMHellox64.asm │ ├── NASMSum.asm │ ├── NASMSumIoInc.asm │ └── NASMSumx64.asm │ ├── include │ ├── io.inc │ └── io64.inc │ ├── keys.ini │ └── sasm.png ├── README.txt ├── SASM.pro ├── Windows ├── FASM │ ├── fasm.exe │ └── listing.exe ├── GAS │ ├── 32 │ │ └── as.exe │ └── 64 │ │ └── as.exe ├── MinGW │ ├── bin │ │ ├── gcc.exe │ │ ├── gdb.exe │ │ ├── libexpat-1.dll │ │ ├── libgcc_s_dw2-1.dll │ │ ├── libiconv-2.dll │ │ ├── libintl-8.dll │ │ └── objdump.exe │ ├── lib │ │ ├── crt2.o │ │ ├── gcc │ │ │ └── mingw32 │ │ │ │ └── 4.6.2 │ │ │ │ ├── crtbegin.o │ │ │ │ ├── crtend.o │ │ │ │ ├── libgcc.a │ │ │ │ └── libgcc_eh.a │ │ ├── libadvapi32.a │ │ ├── libkernel32.a │ │ ├── libmingw32.a │ │ ├── libmingwex.a │ │ ├── libmoldname.a │ │ ├── libmsvcrt.a │ │ ├── libshell32.a │ │ └── libuser32.a │ ├── libexec │ │ └── gcc │ │ │ └── mingw32 │ │ │ └── 4.6.2 │ │ │ └── liblto_plugin-0.dll │ └── mingw32 │ │ └── bin │ │ └── ld.exe ├── MinGW64 │ ├── bin │ │ ├── gcc.exe │ │ ├── gdb.exe │ │ ├── gdborig.exe │ │ ├── libwinpthread-1.dll │ │ └── objdump.exe │ ├── include │ │ └── gdb │ │ │ └── jit-reader.h │ ├── lib │ │ └── gcc │ │ │ └── x86_64-w64-mingw32 │ │ │ └── 4.8.1 │ │ │ ├── libgcc.a │ │ │ └── libgcc_eh.a │ ├── libexec │ │ └── gcc │ │ │ └── x86_64-w64-mingw32 │ │ │ └── 4.8.1 │ │ │ └── liblto_plugin-0.dll │ ├── opt │ │ ├── bin │ │ │ └── libpython2.7.dll │ │ └── lib │ │ │ └── python2.7 │ │ │ ├── LICENSE.txt │ │ │ ├── UserDict.py │ │ │ ├── _abcoll.py │ │ │ ├── _sysconfigdata.py │ │ │ ├── _weakrefset.py │ │ │ ├── abc.py │ │ │ ├── codecs.py │ │ │ ├── copy.py │ │ │ ├── copy_reg.py │ │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ ├── aliases.py │ │ │ ├── ascii.py │ │ │ ├── base64_codec.py │ │ │ ├── big5.py │ │ │ ├── big5hkscs.py │ │ │ ├── bz2_codec.py │ │ │ ├── charmap.py │ │ │ ├── cp037.py │ │ │ ├── cp1006.py │ │ │ ├── cp1026.py │ │ │ ├── cp1140.py │ │ │ ├── cp1250.py │ │ │ ├── cp1251.py │ │ │ ├── cp1252.py │ │ │ ├── cp1253.py │ │ │ ├── cp1254.py │ │ │ ├── cp1255.py │ │ │ ├── cp1256.py │ │ │ ├── cp1257.py │ │ │ ├── cp1258.py │ │ │ ├── cp424.py │ │ │ ├── cp437.py │ │ │ ├── cp500.py │ │ │ ├── cp720.py │ │ │ ├── cp737.py │ │ │ ├── cp775.py │ │ │ ├── cp850.py │ │ │ ├── cp852.py │ │ │ ├── cp855.py │ │ │ ├── cp856.py │ │ │ ├── cp857.py │ │ │ ├── cp858.py │ │ │ ├── cp860.py │ │ │ ├── cp861.py │ │ │ ├── cp862.py │ │ │ ├── cp863.py │ │ │ ├── cp864.py │ │ │ ├── cp865.py │ │ │ ├── cp866.py │ │ │ ├── cp869.py │ │ │ ├── cp874.py │ │ │ ├── cp875.py │ │ │ ├── cp932.py │ │ │ ├── cp949.py │ │ │ ├── cp950.py │ │ │ ├── euc_jis_2004.py │ │ │ ├── euc_jisx0213.py │ │ │ ├── euc_jp.py │ │ │ ├── euc_kr.py │ │ │ ├── gb18030.py │ │ │ ├── gb2312.py │ │ │ ├── gbk.py │ │ │ ├── hex_codec.py │ │ │ ├── hp_roman8.py │ │ │ ├── hz.py │ │ │ ├── idna.py │ │ │ ├── iso2022_jp.py │ │ │ ├── iso2022_jp_1.py │ │ │ ├── iso2022_jp_2.py │ │ │ ├── iso2022_jp_2004.py │ │ │ ├── iso2022_jp_3.py │ │ │ ├── iso2022_jp_ext.py │ │ │ ├── iso2022_kr.py │ │ │ ├── iso8859_1.py │ │ │ ├── iso8859_10.py │ │ │ ├── iso8859_11.py │ │ │ ├── iso8859_13.py │ │ │ ├── iso8859_14.py │ │ │ ├── iso8859_15.py │ │ │ ├── iso8859_16.py │ │ │ ├── iso8859_2.py │ │ │ ├── iso8859_3.py │ │ │ ├── iso8859_4.py │ │ │ ├── iso8859_5.py │ │ │ ├── iso8859_6.py │ │ │ ├── iso8859_7.py │ │ │ ├── iso8859_8.py │ │ │ ├── iso8859_9.py │ │ │ ├── johab.py │ │ │ ├── koi8_r.py │ │ │ ├── koi8_u.py │ │ │ ├── latin_1.py │ │ │ ├── mac_arabic.py │ │ │ ├── mac_centeuro.py │ │ │ ├── mac_croatian.py │ │ │ ├── mac_cyrillic.py │ │ │ ├── mac_farsi.py │ │ │ ├── mac_greek.py │ │ │ ├── mac_iceland.py │ │ │ ├── mac_latin2.py │ │ │ ├── mac_roman.py │ │ │ ├── mac_romanian.py │ │ │ ├── mac_turkish.py │ │ │ ├── mbcs.py │ │ │ ├── palmos.py │ │ │ ├── ptcp154.py │ │ │ ├── punycode.py │ │ │ ├── quopri_codec.py │ │ │ ├── raw_unicode_escape.py │ │ │ ├── rot_13.py │ │ │ ├── shift_jis.py │ │ │ ├── shift_jis_2004.py │ │ │ ├── shift_jisx0213.py │ │ │ ├── string_escape.py │ │ │ ├── tis_620.py │ │ │ ├── undefined.py │ │ │ ├── unicode_escape.py │ │ │ ├── unicode_internal.py │ │ │ ├── utf_16.py │ │ │ ├── utf_16_be.py │ │ │ ├── utf_16_le.py │ │ │ ├── utf_32.py │ │ │ ├── utf_32_be.py │ │ │ ├── utf_32_le.py │ │ │ ├── utf_7.py │ │ │ ├── utf_8.py │ │ │ ├── utf_8_sig.py │ │ │ └── uu_codec.py │ │ │ ├── functools.py │ │ │ ├── genericpath.py │ │ │ ├── linecache.py │ │ │ ├── locale.py │ │ │ ├── ntpath.py │ │ │ ├── os.py │ │ │ ├── re.py │ │ │ ├── site.py │ │ │ ├── sre_compile.py │ │ │ ├── sre_constants.py │ │ │ ├── sre_parse.py │ │ │ ├── stat.py │ │ │ ├── sysconfig.py │ │ │ ├── traceback.py │ │ │ ├── types.py │ │ │ ├── warnings.py │ │ │ └── weakref.py │ ├── share │ │ └── gdb │ │ │ ├── python │ │ │ └── gdb │ │ │ │ ├── __init__.py │ │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── explore.py │ │ │ │ ├── pretty_printers.py │ │ │ │ ├── prompt.py │ │ │ │ └── type_printers.py │ │ │ │ ├── function │ │ │ │ ├── __init__.py │ │ │ │ └── strfns.py │ │ │ │ ├── printing.py │ │ │ │ ├── prompt.py │ │ │ │ └── types.py │ │ │ └── syscalls │ │ │ ├── amd64-linux.xml │ │ │ ├── gdb-syscalls.dtd │ │ │ ├── i386-linux.xml │ │ │ ├── mips-n32-linux.xml │ │ │ ├── mips-n64-linux.xml │ │ │ ├── mips-o32-linux.xml │ │ │ ├── ppc-linux.xml │ │ │ ├── ppc64-linux.xml │ │ │ ├── sparc-linux.xml │ │ │ └── sparc64-linux.xml │ └── x86_64-w64-mingw32 │ │ ├── bin │ │ └── ld.exe │ │ └── lib │ │ ├── crt2.o │ │ ├── crtbegin.o │ │ ├── crtend.o │ │ ├── libadvapi32.a │ │ ├── libiconv.a │ │ ├── libkernel32.a │ │ ├── libmingw32.a │ │ ├── libmingwex.a │ │ ├── libmoldname.a │ │ ├── libmsvcrt.a │ │ ├── libpthread.a │ │ ├── libshell32.a │ │ └── libuser32.a ├── NASM │ ├── macro.o │ ├── macro64.o │ └── nasm.exe ├── Projects │ ├── FASMHello.asm │ ├── FASMHellox64.asm │ ├── FASMSum.asm │ ├── FASMSumx64.asm │ ├── GASHello.asm │ ├── GASHellox64.asm │ ├── GASSum.asm │ ├── GASSumx64.asm │ ├── MASMHello.asm │ ├── NASMHello.asm │ ├── NASMHelloIoInc.asm │ ├── NASMHellox64.asm │ ├── NASMSum.asm │ ├── NASMSumIoInc.asm │ └── NASMSumx64.asm ├── include │ ├── io.inc │ └── io64.inc ├── keys.ini ├── license.txt └── licenseRus.txt ├── assembler.cpp ├── assembler.h ├── codeeditor.cpp ├── codeeditor.h ├── common.cpp ├── common.h ├── configfile ├── debuganycommandwidget.cpp ├── debuganycommandwidget.h ├── debugger.cpp ├── debugger.h ├── debugtablewidget.cpp ├── debugtablewidget.h ├── fasm.cpp ├── fasm.h ├── finddialog.cpp ├── finddialog.h ├── gas.cpp ├── gas.h ├── gccbasedassembler.cpp ├── gccbasedassembler.h ├── getstartedwidget.cpp ├── getstartedwidget.h ├── help.html ├── helpENG.html ├── highlighter.cpp ├── highlighter.h ├── icon.ico ├── icon.rc ├── images ├── breakpoint.png ├── build.png ├── continue.png ├── copy.png ├── cut.png ├── debug.png ├── debugLine.png ├── debugPause.png ├── mainIcon.png ├── new.png ├── open.png ├── paste.png ├── redo.png ├── run.png ├── save.png ├── smallIcon.png ├── stepinto.png ├── stepover.png ├── stop.png └── undo.png ├── language_de.qm ├── language_de.ts ├── language_es.qm ├── language_es.ts ├── language_fr.qm ├── language_fr.ts ├── language_he.qm ├── language_he.ts ├── language_it.qm ├── language_it.ts ├── language_pl.qm ├── language_pl.ts ├── language_pt_BR.qm ├── language_pt_BR.ts ├── language_pt_PT.qm ├── language_pt_PT.ts ├── language_ru.qm ├── language_ru.ts ├── language_tr.qm ├── language_tr.ts ├── language_zh.qm ├── language_zh.ts ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── masm.cpp ├── masm.h ├── nasm.cpp ├── nasm.h ├── qt_de.qm ├── qt_es.qm ├── qt_fr.qm ├── qt_he.qm ├── qt_it.qm ├── qt_pl.qm ├── qt_pt_BR.qm ├── qt_pt_PT.qm ├── qt_ru.qm ├── qt_tr.qm ├── qt_zh.qm ├── ruqplaintextedit.cpp ├── ruqplaintextedit.h ├── ruqtextedit.cpp ├── ruqtextedit.h ├── settings.ui ├── signallocker.cpp ├── signallocker.h ├── singleapplication ├── QtLockedFile ├── QtSingleApplication ├── qtlocalpeer.cpp ├── qtlocalpeer.h ├── qtlockedfile.cpp ├── qtlockedfile.h ├── qtlockedfile_unix.cpp ├── qtlockedfile_win.cpp ├── qtsingleapplication.cpp ├── qtsingleapplication.h └── qtsingleapplication.pri ├── tab.cpp ├── tab.h ├── watchsettingswidget.cpp └── watchsettingswidget.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/.gitignore -------------------------------------------------------------------------------- /BSD/bin/fasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/bin/fasm -------------------------------------------------------------------------------- /BSD/bin/listing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/bin/listing -------------------------------------------------------------------------------- /BSD/share/applications/sasm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/applications/sasm.desktop -------------------------------------------------------------------------------- /BSD/share/doc/sasm/changelog.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/doc/sasm/changelog.gz -------------------------------------------------------------------------------- /BSD/share/doc/sasm/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/doc/sasm/copyright -------------------------------------------------------------------------------- /BSD/share/sasm/NASM/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/NASM/macro.c -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/FASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/FASMHello.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/FASMHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/FASMHellox64.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/FASMSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/FASMSum.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/FASMSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/FASMSumx64.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/GASHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/GASHello.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/GASHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/GASHellox64.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/GASSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/GASSum.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/GASSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/GASSumx64.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/NASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/NASMHello.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/NASMHelloIoInc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/NASMHelloIoInc.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/NASMHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/NASMHellox64.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/NASMSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/NASMSum.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/NASMSumIoInc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/NASMSumIoInc.asm -------------------------------------------------------------------------------- /BSD/share/sasm/Projects/NASMSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/Projects/NASMSumx64.asm -------------------------------------------------------------------------------- /BSD/share/sasm/include/io.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/include/io.inc -------------------------------------------------------------------------------- /BSD/share/sasm/include/io64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/include/io64.inc -------------------------------------------------------------------------------- /BSD/share/sasm/keys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/keys.ini -------------------------------------------------------------------------------- /BSD/share/sasm/sasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/BSD/share/sasm/sasm.png -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING_RUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/COPYING_RUS -------------------------------------------------------------------------------- /Help.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Help.qrc -------------------------------------------------------------------------------- /Images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Images.qrc -------------------------------------------------------------------------------- /Languages.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Languages.qrc -------------------------------------------------------------------------------- /Linux/bin/fasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/bin/fasm -------------------------------------------------------------------------------- /Linux/bin/listing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/bin/listing -------------------------------------------------------------------------------- /Linux/share/applications/sasm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/applications/sasm.desktop -------------------------------------------------------------------------------- /Linux/share/doc/sasm/changelog.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/doc/sasm/changelog.gz -------------------------------------------------------------------------------- /Linux/share/doc/sasm/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/doc/sasm/copyright -------------------------------------------------------------------------------- /Linux/share/sasm/NASM/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/NASM/macro.c -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/FASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/FASMHello.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/FASMHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/FASMHellox64.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/FASMSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/FASMSum.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/FASMSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/FASMSumx64.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/GASHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/GASHello.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/GASHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/GASHellox64.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/GASSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/GASSum.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/GASSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/GASSumx64.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/NASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/NASMHello.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/NASMHelloIoInc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/NASMHelloIoInc.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/NASMHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/NASMHellox64.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/NASMSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/NASMSum.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/NASMSumIoInc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/NASMSumIoInc.asm -------------------------------------------------------------------------------- /Linux/share/sasm/Projects/NASMSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/Projects/NASMSumx64.asm -------------------------------------------------------------------------------- /Linux/share/sasm/include/io.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/include/io.inc -------------------------------------------------------------------------------- /Linux/share/sasm/include/io64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/include/io64.inc -------------------------------------------------------------------------------- /Linux/share/sasm/keys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/keys.ini -------------------------------------------------------------------------------- /Linux/share/sasm/sasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Linux/share/sasm/sasm.png -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/README.txt -------------------------------------------------------------------------------- /SASM.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/SASM.pro -------------------------------------------------------------------------------- /Windows/FASM/fasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/FASM/fasm.exe -------------------------------------------------------------------------------- /Windows/FASM/listing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/FASM/listing.exe -------------------------------------------------------------------------------- /Windows/GAS/32/as.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/GAS/32/as.exe -------------------------------------------------------------------------------- /Windows/GAS/64/as.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/GAS/64/as.exe -------------------------------------------------------------------------------- /Windows/MinGW/bin/gcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/gcc.exe -------------------------------------------------------------------------------- /Windows/MinGW/bin/gdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/gdb.exe -------------------------------------------------------------------------------- /Windows/MinGW/bin/libexpat-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/libexpat-1.dll -------------------------------------------------------------------------------- /Windows/MinGW/bin/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /Windows/MinGW/bin/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/libiconv-2.dll -------------------------------------------------------------------------------- /Windows/MinGW/bin/libintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/libintl-8.dll -------------------------------------------------------------------------------- /Windows/MinGW/bin/objdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/bin/objdump.exe -------------------------------------------------------------------------------- /Windows/MinGW/lib/crt2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/crt2.o -------------------------------------------------------------------------------- /Windows/MinGW/lib/gcc/mingw32/4.6.2/crtbegin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/gcc/mingw32/4.6.2/crtbegin.o -------------------------------------------------------------------------------- /Windows/MinGW/lib/gcc/mingw32/4.6.2/crtend.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/gcc/mingw32/4.6.2/crtend.o -------------------------------------------------------------------------------- /Windows/MinGW/lib/gcc/mingw32/4.6.2/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/gcc/mingw32/4.6.2/libgcc.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/gcc/mingw32/4.6.2/libgcc_eh.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/gcc/mingw32/4.6.2/libgcc_eh.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libadvapi32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libadvapi32.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libkernel32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libkernel32.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libmingw32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libmingw32.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libmingwex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libmingwex.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libmoldname.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libmoldname.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libmsvcrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libmsvcrt.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libshell32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libshell32.a -------------------------------------------------------------------------------- /Windows/MinGW/lib/libuser32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/lib/libuser32.a -------------------------------------------------------------------------------- /Windows/MinGW/libexec/gcc/mingw32/4.6.2/liblto_plugin-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/libexec/gcc/mingw32/4.6.2/liblto_plugin-0.dll -------------------------------------------------------------------------------- /Windows/MinGW/mingw32/bin/ld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW/mingw32/bin/ld.exe -------------------------------------------------------------------------------- /Windows/MinGW64/bin/gcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/bin/gcc.exe -------------------------------------------------------------------------------- /Windows/MinGW64/bin/gdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/bin/gdb.exe -------------------------------------------------------------------------------- /Windows/MinGW64/bin/gdborig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/bin/gdborig.exe -------------------------------------------------------------------------------- /Windows/MinGW64/bin/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/bin/libwinpthread-1.dll -------------------------------------------------------------------------------- /Windows/MinGW64/bin/objdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/bin/objdump.exe -------------------------------------------------------------------------------- /Windows/MinGW64/include/gdb/jit-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/include/gdb/jit-reader.h -------------------------------------------------------------------------------- /Windows/MinGW64/lib/gcc/x86_64-w64-mingw32/4.8.1/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/lib/gcc/x86_64-w64-mingw32/4.8.1/libgcc.a -------------------------------------------------------------------------------- /Windows/MinGW64/lib/gcc/x86_64-w64-mingw32/4.8.1/libgcc_eh.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/lib/gcc/x86_64-w64-mingw32/4.8.1/libgcc_eh.a -------------------------------------------------------------------------------- /Windows/MinGW64/libexec/gcc/x86_64-w64-mingw32/4.8.1/liblto_plugin-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/libexec/gcc/x86_64-w64-mingw32/4.8.1/liblto_plugin-0.dll -------------------------------------------------------------------------------- /Windows/MinGW64/opt/bin/libpython2.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/bin/libpython2.7.dll -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/LICENSE.txt -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/UserDict.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/_abcoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/_abcoll.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/_sysconfigdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/_sysconfigdata.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/_weakrefset.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/abc.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/codecs.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/copy.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/copy_reg.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/__init__.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/aliases.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/ascii.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/base64_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/base64_codec.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/big5.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/big5hkscs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/big5hkscs.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/bz2_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/bz2_codec.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/charmap.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp037.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1006.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1026.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1140.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1250.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1251.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1252.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1253.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1254.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1255.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1256.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1257.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp1258.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp424.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp437.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp500.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp720.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp737.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp775.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp850.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp852.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp855.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp856.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp857.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp858.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp860.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp861.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp862.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp863.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp864.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp865.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp866.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp869.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp874.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp875.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp932.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp949.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/cp950.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/euc_jis_2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/euc_jis_2004.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/euc_jisx0213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/euc_jisx0213.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/euc_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/euc_jp.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/euc_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/euc_kr.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/gb18030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/gb18030.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/gb2312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/gb2312.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/gbk.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/hex_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/hex_codec.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/hp_roman8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/hp_roman8.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/hz.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/idna.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_1.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_2.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_2004.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_3.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_jp_ext.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso2022_kr.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_1.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_10.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_11.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_13.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_14.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_15.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_16.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_2.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_3.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_4.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_5.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_6.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_7.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_8.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/iso8859_9.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/johab.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/koi8_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/koi8_r.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/koi8_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/koi8_u.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/latin_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/latin_1.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_arabic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_arabic.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_centeuro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_centeuro.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_croatian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_croatian.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_cyrillic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_cyrillic.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_farsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_farsi.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_greek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_greek.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_iceland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_iceland.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_latin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_latin2.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_roman.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_romanian.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mac_turkish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mac_turkish.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/mbcs.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/palmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/palmos.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/ptcp154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/ptcp154.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/punycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/punycode.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/quopri_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/quopri_codec.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/raw_unicode_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/raw_unicode_escape.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/rot_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/rot_13.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/shift_jis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/shift_jis.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/shift_jis_2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/shift_jis_2004.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/shift_jisx0213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/shift_jisx0213.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/string_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/string_escape.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/tis_620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/tis_620.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/undefined.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/unicode_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/unicode_escape.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/unicode_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/unicode_internal.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_16.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_16_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_16_be.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_16_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_16_le.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_32.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_32_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_32_be.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_32_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_32_le.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_7.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_8.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/utf_8_sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/utf_8_sig.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/encodings/uu_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/encodings/uu_codec.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/functools.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/genericpath.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/linecache.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/locale.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/ntpath.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/os.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/re.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/site.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/sre_compile.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/sre_constants.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/sre_parse.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/stat.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/sysconfig.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/traceback.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/types.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/warnings.py -------------------------------------------------------------------------------- /Windows/MinGW64/opt/lib/python2.7/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/opt/lib/python2.7/weakref.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/__init__.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/command/__init__.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/command/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/command/explore.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/command/pretty_printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/command/pretty_printers.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/command/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/command/prompt.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/command/type_printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/command/type_printers.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/function/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/function/__init__.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/function/strfns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/function/strfns.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/printing.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/prompt.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/python/gdb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/python/gdb/types.py -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/amd64-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/amd64-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/gdb-syscalls.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/gdb-syscalls.dtd -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/i386-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/i386-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/mips-n32-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/mips-n32-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/mips-n64-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/mips-n64-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/mips-o32-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/mips-o32-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/ppc-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/ppc-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/ppc64-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/ppc64-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/sparc-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/sparc-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/share/gdb/syscalls/sparc64-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/share/gdb/syscalls/sparc64-linux.xml -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/bin/ld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/bin/ld.exe -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/crt2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/crt2.o -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/crtbegin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/crtbegin.o -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/crtend.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/crtend.o -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libadvapi32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libadvapi32.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libiconv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libiconv.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libkernel32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libkernel32.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libmingw32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libmingw32.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libmingwex.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libmingwex.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libmoldname.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libmoldname.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libmsvcrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libmsvcrt.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libpthread.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libpthread.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libshell32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libshell32.a -------------------------------------------------------------------------------- /Windows/MinGW64/x86_64-w64-mingw32/lib/libuser32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/MinGW64/x86_64-w64-mingw32/lib/libuser32.a -------------------------------------------------------------------------------- /Windows/NASM/macro.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/NASM/macro.o -------------------------------------------------------------------------------- /Windows/NASM/macro64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/NASM/macro64.o -------------------------------------------------------------------------------- /Windows/NASM/nasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/NASM/nasm.exe -------------------------------------------------------------------------------- /Windows/Projects/FASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/FASMHello.asm -------------------------------------------------------------------------------- /Windows/Projects/FASMHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/FASMHellox64.asm -------------------------------------------------------------------------------- /Windows/Projects/FASMSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/FASMSum.asm -------------------------------------------------------------------------------- /Windows/Projects/FASMSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/FASMSumx64.asm -------------------------------------------------------------------------------- /Windows/Projects/GASHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/GASHello.asm -------------------------------------------------------------------------------- /Windows/Projects/GASHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/GASHellox64.asm -------------------------------------------------------------------------------- /Windows/Projects/GASSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/GASSum.asm -------------------------------------------------------------------------------- /Windows/Projects/GASSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/GASSumx64.asm -------------------------------------------------------------------------------- /Windows/Projects/MASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/MASMHello.asm -------------------------------------------------------------------------------- /Windows/Projects/NASMHello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/NASMHello.asm -------------------------------------------------------------------------------- /Windows/Projects/NASMHelloIoInc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/NASMHelloIoInc.asm -------------------------------------------------------------------------------- /Windows/Projects/NASMHellox64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/NASMHellox64.asm -------------------------------------------------------------------------------- /Windows/Projects/NASMSum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/NASMSum.asm -------------------------------------------------------------------------------- /Windows/Projects/NASMSumIoInc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/NASMSumIoInc.asm -------------------------------------------------------------------------------- /Windows/Projects/NASMSumx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/Projects/NASMSumx64.asm -------------------------------------------------------------------------------- /Windows/include/io.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/include/io.inc -------------------------------------------------------------------------------- /Windows/include/io64.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/include/io64.inc -------------------------------------------------------------------------------- /Windows/keys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/keys.ini -------------------------------------------------------------------------------- /Windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/license.txt -------------------------------------------------------------------------------- /Windows/licenseRus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/Windows/licenseRus.txt -------------------------------------------------------------------------------- /assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/assembler.cpp -------------------------------------------------------------------------------- /assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/assembler.h -------------------------------------------------------------------------------- /codeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/codeeditor.cpp -------------------------------------------------------------------------------- /codeeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/codeeditor.h -------------------------------------------------------------------------------- /common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/common.cpp -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/common.h -------------------------------------------------------------------------------- /configfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/configfile -------------------------------------------------------------------------------- /debuganycommandwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/debuganycommandwidget.cpp -------------------------------------------------------------------------------- /debuganycommandwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/debuganycommandwidget.h -------------------------------------------------------------------------------- /debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/debugger.cpp -------------------------------------------------------------------------------- /debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/debugger.h -------------------------------------------------------------------------------- /debugtablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/debugtablewidget.cpp -------------------------------------------------------------------------------- /debugtablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/debugtablewidget.h -------------------------------------------------------------------------------- /fasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/fasm.cpp -------------------------------------------------------------------------------- /fasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/fasm.h -------------------------------------------------------------------------------- /finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/finddialog.cpp -------------------------------------------------------------------------------- /finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/finddialog.h -------------------------------------------------------------------------------- /gas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/gas.cpp -------------------------------------------------------------------------------- /gas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/gas.h -------------------------------------------------------------------------------- /gccbasedassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/gccbasedassembler.cpp -------------------------------------------------------------------------------- /gccbasedassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/gccbasedassembler.h -------------------------------------------------------------------------------- /getstartedwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/getstartedwidget.cpp -------------------------------------------------------------------------------- /getstartedwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/getstartedwidget.h -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/help.html -------------------------------------------------------------------------------- /helpENG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/helpENG.html -------------------------------------------------------------------------------- /highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/highlighter.cpp -------------------------------------------------------------------------------- /highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/highlighter.h -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/icon.ico -------------------------------------------------------------------------------- /icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/icon.rc -------------------------------------------------------------------------------- /images/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/breakpoint.png -------------------------------------------------------------------------------- /images/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/build.png -------------------------------------------------------------------------------- /images/continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/continue.png -------------------------------------------------------------------------------- /images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/copy.png -------------------------------------------------------------------------------- /images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/cut.png -------------------------------------------------------------------------------- /images/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/debug.png -------------------------------------------------------------------------------- /images/debugLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/debugLine.png -------------------------------------------------------------------------------- /images/debugPause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/debugPause.png -------------------------------------------------------------------------------- /images/mainIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/mainIcon.png -------------------------------------------------------------------------------- /images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/new.png -------------------------------------------------------------------------------- /images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/open.png -------------------------------------------------------------------------------- /images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/paste.png -------------------------------------------------------------------------------- /images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/redo.png -------------------------------------------------------------------------------- /images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/run.png -------------------------------------------------------------------------------- /images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/save.png -------------------------------------------------------------------------------- /images/smallIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/smallIcon.png -------------------------------------------------------------------------------- /images/stepinto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/stepinto.png -------------------------------------------------------------------------------- /images/stepover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/stepover.png -------------------------------------------------------------------------------- /images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/stop.png -------------------------------------------------------------------------------- /images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/images/undo.png -------------------------------------------------------------------------------- /language_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_de.qm -------------------------------------------------------------------------------- /language_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_de.ts -------------------------------------------------------------------------------- /language_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_es.qm -------------------------------------------------------------------------------- /language_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_es.ts -------------------------------------------------------------------------------- /language_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_fr.qm -------------------------------------------------------------------------------- /language_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_fr.ts -------------------------------------------------------------------------------- /language_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_he.qm -------------------------------------------------------------------------------- /language_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_he.ts -------------------------------------------------------------------------------- /language_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_it.qm -------------------------------------------------------------------------------- /language_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_it.ts -------------------------------------------------------------------------------- /language_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_pl.qm -------------------------------------------------------------------------------- /language_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_pl.ts -------------------------------------------------------------------------------- /language_pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_pt_BR.qm -------------------------------------------------------------------------------- /language_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_pt_BR.ts -------------------------------------------------------------------------------- /language_pt_PT.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_pt_PT.qm -------------------------------------------------------------------------------- /language_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_pt_PT.ts -------------------------------------------------------------------------------- /language_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_ru.qm -------------------------------------------------------------------------------- /language_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_ru.ts -------------------------------------------------------------------------------- /language_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_tr.qm -------------------------------------------------------------------------------- /language_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_tr.ts -------------------------------------------------------------------------------- /language_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_zh.qm -------------------------------------------------------------------------------- /language_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/language_zh.ts -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/mainwindow.h -------------------------------------------------------------------------------- /masm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/masm.cpp -------------------------------------------------------------------------------- /masm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/masm.h -------------------------------------------------------------------------------- /nasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/nasm.cpp -------------------------------------------------------------------------------- /nasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/nasm.h -------------------------------------------------------------------------------- /qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_de.qm -------------------------------------------------------------------------------- /qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_es.qm -------------------------------------------------------------------------------- /qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_fr.qm -------------------------------------------------------------------------------- /qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_he.qm -------------------------------------------------------------------------------- /qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_it.qm -------------------------------------------------------------------------------- /qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_pl.qm -------------------------------------------------------------------------------- /qt_pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_pt_BR.qm -------------------------------------------------------------------------------- /qt_pt_PT.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_pt_PT.qm -------------------------------------------------------------------------------- /qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_ru.qm -------------------------------------------------------------------------------- /qt_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_tr.qm -------------------------------------------------------------------------------- /qt_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/qt_zh.qm -------------------------------------------------------------------------------- /ruqplaintextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/ruqplaintextedit.cpp -------------------------------------------------------------------------------- /ruqplaintextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/ruqplaintextedit.h -------------------------------------------------------------------------------- /ruqtextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/ruqtextedit.cpp -------------------------------------------------------------------------------- /ruqtextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/ruqtextedit.h -------------------------------------------------------------------------------- /settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/settings.ui -------------------------------------------------------------------------------- /signallocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/signallocker.cpp -------------------------------------------------------------------------------- /signallocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/signallocker.h -------------------------------------------------------------------------------- /singleapplication/QtLockedFile: -------------------------------------------------------------------------------- 1 | #include "qtlockedfile.h" 2 | -------------------------------------------------------------------------------- /singleapplication/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /singleapplication/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtlocalpeer.cpp -------------------------------------------------------------------------------- /singleapplication/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtlocalpeer.h -------------------------------------------------------------------------------- /singleapplication/qtlockedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtlockedfile.cpp -------------------------------------------------------------------------------- /singleapplication/qtlockedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtlockedfile.h -------------------------------------------------------------------------------- /singleapplication/qtlockedfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtlockedfile_unix.cpp -------------------------------------------------------------------------------- /singleapplication/qtlockedfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtlockedfile_win.cpp -------------------------------------------------------------------------------- /singleapplication/qtsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtsingleapplication.cpp -------------------------------------------------------------------------------- /singleapplication/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtsingleapplication.h -------------------------------------------------------------------------------- /singleapplication/qtsingleapplication.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/singleapplication/qtsingleapplication.pri -------------------------------------------------------------------------------- /tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/tab.cpp -------------------------------------------------------------------------------- /tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/tab.h -------------------------------------------------------------------------------- /watchsettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/watchsettingswidget.cpp -------------------------------------------------------------------------------- /watchsettingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dman95/SASM/HEAD/watchsettingswidget.h --------------------------------------------------------------------------------