├── .gitignore ├── LICENSE.md ├── README.md ├── bigtstbd.qsc ├── bin ├── aniedit.exe ├── asmbl.txt ├── assmbl.bat ├── bldall.bat ├── bldallc.bat ├── bres.bat ├── build.bat ├── buildc.bat ├── cvtres.exe ├── dasm.bat ├── dasmd.bat ├── dbgwin.exe ├── dumpbin.exe ├── dumppe.exe ├── dumppe.txt ├── editbin.exe ├── imagedit.exe ├── imagedit.hlp ├── lib.exe ├── link.exe ├── link16.exe ├── lnk.bat ├── lnkc.bat ├── ml.err ├── ml.exe ├── msdis100.dll ├── msdis109.dll ├── mspdb50.dll ├── pelle.txt ├── poasm.exe ├── polib.exe ├── polink.exe ├── porc.dll ├── porc.exe ├── rc.GID ├── rc.exe ├── rc.hlp ├── rcdll.dll └── zoomin.exe ├── bin2dbex.exe ├── blankdlg.qsc ├── bldmakit.qsc ├── blockp.ini ├── cg.exe ├── cg.ini ├── cpicker.exe ├── datetime ├── CopyDateTime.asm ├── CurrentTimeZoneName.asm ├── CurrentUtcOffsetInHours.asm ├── CurrentUtcOffsetInMinutes.asm ├── DateAdd.asm ├── DateDiff.asm ├── DateDiffTotal.asm ├── DateTime.inc ├── DateTime.lib ├── DateTimeToDateString.asm ├── DateTimeToDateStringLong.asm ├── DateTimeToDateStringShort.asm ├── DateTimeToString.asm ├── DateTimeToStringFormat.asm ├── DateTimeToStringLong.asm ├── DateTimeToStringLong12.asm ├── DateTimeToStringLong24.asm ├── DateTimeToStringShort.asm ├── DateTimeToStringShort12.asm ├── DateTimeToStringShort24.asm ├── DateTimeToTimeString.asm ├── DateTimeToTimeString12.asm ├── DateTimeToTimeString24.asm ├── DateTimeToYMDHMS.asm ├── Day.asm ├── DayOfWeek.asm ├── DayOfWeekName.asm ├── DayOfYear.asm ├── DaylightSavingTimeEndDateTime.asm ├── DaylightSavingTimeStartDateTime.asm ├── DaysInMonth.asm ├── GetLocalDateTime.asm ├── GetUtcDateTime.asm ├── Hour.asm ├── IsDaylightSavingTime.asm ├── IsLeapYear.asm ├── Minute.asm ├── Month.asm ├── MonthName.asm ├── Second.asm ├── StringToDateTime.asm ├── TimeSerial.asm ├── TimeSpan.asm ├── TziDateToDateTime.asm ├── YMDHMSToDateTime.asm ├── Year.asm ├── demo │ ├── WorldTimes.asm │ ├── WorldTimes.exe │ └── makeit.bat └── make.bat ├── dlgmake.exe ├── dlgproc.qsc ├── dlgtmplt.qsc ├── examples ├── Bill_Cravener │ ├── AniWindow │ │ ├── AniBlend │ │ │ ├── AniBlend.asm │ │ │ ├── AniBlend.bat │ │ │ ├── AniBlend.exe │ │ │ └── AniBlend_rc.rc │ │ ├── AniBotmTop │ │ │ ├── AniTopBotm.asm │ │ │ ├── AniTopBotm.bat │ │ │ ├── AniTopBotm.exe │ │ │ └── AniTopBotm_rc.rc │ │ ├── AniCenter │ │ │ ├── AniCenter.asm │ │ │ ├── AniCenter.bat │ │ │ ├── AniCenter.exe │ │ │ └── AniCenter_rc.rc │ │ ├── AniDiagLeftRight │ │ │ ├── AniDiagLeftRight.asm │ │ │ ├── AniDiagLeftRight.bat │ │ │ ├── AniDiagLeftRight.exe │ │ │ └── AniDiagLeftRight_rc.rc │ │ ├── AniDiagRightLeft │ │ │ ├── AniDiagRightLeft.asm │ │ │ ├── AniDiagRightLeft.bat │ │ │ ├── AniDiagRightLeft.exe │ │ │ └── AniDiagRightLeft_rc.rc │ │ ├── AniLeftRight │ │ │ ├── AniLeftRight.asm │ │ │ ├── AniLeftRight.bat │ │ │ ├── AniLeftRight.exe │ │ │ └── AniLeftRight_rc.rc │ │ ├── AniRightLeft │ │ │ ├── AniRightLeft.asm │ │ │ ├── AniRightLeft.bat │ │ │ ├── AniRightLeft.exe │ │ │ └── AniRightLeft_rc.rc │ │ └── AniTopBotm │ │ │ ├── AniBotmTop.asm │ │ │ ├── AniBotmTop.bat │ │ │ ├── AniBotmTop.exe │ │ │ └── AniBotmTop_rc.rc │ ├── CommonDlgs │ │ ├── CommonDlgs.asm │ │ ├── CommonDlgs.exe │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── PCalendar │ │ ├── PCalendar.asm │ │ ├── PCalendar.exe │ │ ├── PCalendar.ico │ │ ├── PCalendar.obj │ │ ├── makeit.bat │ │ ├── rsrc.RES │ │ ├── rsrc.obj │ │ └── rsrc.rc │ ├── PlayMP3 │ │ ├── Multimedia.asm │ │ ├── Multimedia.exe │ │ ├── Multimedia.obj │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── append │ │ ├── Appender.lst │ │ ├── append.txt │ │ ├── appender.asm │ │ ├── appender.exe │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── calender │ │ ├── Calendar.lst │ │ ├── calendar.asm │ │ ├── calendar.exe │ │ ├── goofy1.bmp │ │ ├── goofy2.bmp │ │ ├── goofy3.bmp │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── controls │ │ ├── Controls.lst │ │ ├── controls.asm │ │ ├── controls.exe │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── enum_display │ │ ├── enumdisplay.asm │ │ ├── enumdisplay.bat │ │ └── enumdisplay.exe │ ├── gdipaths │ │ ├── gdipaths.asm │ │ ├── gdipaths.exe │ │ ├── gdipaths.txt │ │ ├── icon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── griddemo │ │ ├── grid.asm │ │ ├── grid.exe │ │ ├── grid.txt │ │ ├── icon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ └── test.bmp │ ├── hide_desktop │ │ ├── HideDesktop.asm │ │ ├── HideDesktop.exe │ │ ├── HideDesktop.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── memfree │ │ ├── MemFree.asm │ │ ├── MemFree.exe │ │ └── makeit.bat │ ├── mvolume │ │ ├── dlltest.asm │ │ ├── dlltest.exe │ │ ├── libtest.asm │ │ ├── libtest.exe │ │ ├── makedll.bat │ │ ├── makeit.bat │ │ ├── makelib.bat │ │ ├── mixerapi.txt │ │ ├── rsrc.rc │ │ ├── volctrl.asm │ │ ├── volctrl.def │ │ ├── volctrl.dll │ │ ├── volctrl.exp │ │ └── volctrl.lib │ ├── playmidi │ │ ├── Multimedia.obj │ │ ├── makeit.bat │ │ ├── multimedia.asm │ │ ├── multimedia.exe │ │ ├── rsrc.rc │ │ └── sample.mid │ ├── popinfo │ │ ├── makeit.bat │ │ ├── popinfo.asm │ │ ├── popinfo.exe │ │ ├── popinfo.txt │ │ ├── rsrc.rc │ │ └── sample.hlp │ ├── readme.txt │ └── tabs │ │ ├── makeit.bat │ │ ├── tabs.asm │ │ ├── tabs.exe │ │ └── tabs.obj ├── advanced │ ├── msort │ │ ├── makeit.bat │ │ ├── msort.asm │ │ └── msort.exe │ ├── scancode │ │ ├── makeit.bat │ │ ├── scancode.asm │ │ └── scancode.exe │ ├── uwords │ │ ├── makeit.bat │ │ ├── uwords.asm │ │ └── uwords.exe │ └── wrep │ │ ├── makeit.bat │ │ ├── result.asm │ │ ├── richedit.asm │ │ ├── winequ.inc │ │ ├── wrep.asm │ │ └── wrep.exe ├── dialogs │ ├── nested │ │ ├── nested.asm │ │ ├── nested.exe │ │ ├── nested.ico │ │ ├── nested.inc │ │ └── rsrc.rc │ ├── pbddemo │ │ ├── lib │ │ │ ├── about.asm │ │ │ ├── dlglib.inc │ │ │ ├── dlglib.lib │ │ │ ├── getfile.asm │ │ │ ├── getip.asm │ │ │ ├── gettext.asm │ │ │ ├── ip2str.asm │ │ │ ├── loadlist.asm │ │ │ └── makeit.bat │ │ ├── pbddemo.asm │ │ ├── pbddemo.exe │ │ ├── pbddemo.ico │ │ ├── pbddemo.inc │ │ └── rsrc.rc │ ├── simple │ │ ├── simple.asm │ │ ├── simple.exe │ │ └── simple.inc │ ├── simple2 │ │ ├── rsrc.rc │ │ ├── simple2.asm │ │ ├── simple2.exe │ │ ├── simple2.ico │ │ └── simple2.inc │ └── tests │ │ ├── tests.asm │ │ ├── tests.exe │ │ └── tests.inc ├── dialogs_later │ ├── aboutdlgs.txt │ ├── basic │ │ ├── basicdlg.asm │ │ ├── basicdlg.exe │ │ ├── basicdlg.ico │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ └── rsrc.rc │ ├── calender │ │ ├── calender.asm │ │ ├── calender.exe │ │ ├── calender.inc │ │ ├── manifest.xml │ │ └── rsrc.rc │ ├── check │ │ ├── check.asm │ │ ├── check.exe │ │ ├── check.ico │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ └── rsrc.rc │ ├── gettext │ │ ├── gettext.asm │ │ ├── gettext.exe │ │ ├── gettext.ico │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ └── rsrc.rc │ ├── image │ │ ├── image.asm │ │ ├── image.exe │ │ ├── image.ico │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── raphael.bmp │ │ └── rsrc.rc │ ├── lists │ │ ├── lists.asm │ │ ├── lists.exe │ │ ├── lists.ico │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ └── rsrc.rc │ ├── progress │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── progress.asm │ │ ├── progress.exe │ │ ├── progress.ico │ │ └── rsrc.rc │ ├── radio │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── radio.asm │ │ ├── radio.exe │ │ ├── radio.ico │ │ └── rsrc.rc │ ├── riched │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── riched.asm │ │ ├── riched.exe │ │ ├── riched.ico │ │ └── rsrc.rc │ └── statusbar │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── rsrc.rc │ │ ├── status.asm │ │ ├── status.exe │ │ └── status.ico ├── enumerate │ ├── enumdd │ │ ├── enumdd.asm │ │ ├── enumdd.exe │ │ ├── enumdd.ico │ │ ├── enumdd.inc │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ └── statusbr.asm │ ├── enumwin │ │ ├── enumwin.asm │ │ ├── enumwin.exe │ │ ├── enumwin.xml │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ └── pid │ │ ├── makeit.bat │ │ ├── pid.asm │ │ └── pid.exe ├── exampl01 │ ├── 3dframes │ │ ├── 3dframes.asm │ │ ├── 3dframes.exe │ │ ├── mainicon.ico │ │ └── rsrc.rc │ ├── bmbutton │ │ ├── bmbutton.asm │ │ ├── bmbutton.exe │ │ ├── bmbutton.inc │ │ ├── file0002.ic0 │ │ ├── file0003.ico │ │ ├── file0010.bmp │ │ ├── file0011.bmp │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── comctls │ │ ├── comctls.asm │ │ ├── comctls.exe │ │ ├── mainicon.ico │ │ └── rsrc.rc │ ├── dll │ │ ├── blddll.bat │ │ ├── blddll.pif │ │ ├── calldll │ │ │ ├── calldll.asm │ │ │ ├── calldll.exe │ │ │ ├── mainicon.ico │ │ │ ├── rsrc.rc │ │ │ └── tstdll.dll │ │ ├── disasm.txt │ │ ├── loaddll │ │ │ ├── loaddll.asm │ │ │ ├── loaddll.exe │ │ │ ├── mainicon.ico │ │ │ ├── rsrc.rc │ │ │ ├── tstdll.dll │ │ │ └── tstdll.lib │ │ ├── readme.txt │ │ ├── tstdll.asm │ │ ├── tstdll.def │ │ ├── tstdll.dll │ │ ├── tstdll.exp │ │ └── tstdll.lib │ ├── filtinpt │ │ ├── filtinpt.asm │ │ ├── filtinpt.exe │ │ ├── mainicon.ico │ │ └── rsrc.rc │ ├── generic │ │ ├── generic.asm │ │ ├── generic.exe │ │ ├── mainicon.ico │ │ └── rsrc.rc │ ├── leeto │ │ ├── 31337 │ │ │ ├── 31337.asm │ │ │ ├── 31337.exe │ │ │ ├── 31337.inc │ │ │ ├── resource.inc │ │ │ └── rsrc.rc │ │ └── readme.txt │ ├── listbox │ │ ├── listbox.asm │ │ ├── listbox.exe │ │ ├── mainicon.ico │ │ └── rsrc.rc │ ├── mdidemo │ │ ├── filedlgs.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── mditest.asm │ │ ├── mditest.exe │ │ ├── mditest.inc │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── minimum │ │ ├── makeit.bat │ │ ├── minimum.asm │ │ └── minimum.exe │ ├── oldstyle │ │ ├── mainicon.ico │ │ ├── oldstyle.asm │ │ ├── oldstyle.exe │ │ └── rsrc.rc │ ├── poplist │ │ ├── list.asm │ │ ├── list.txt │ │ ├── poplist.asm │ │ ├── poplist.exe │ │ └── qbconvrt.bas │ ├── popup │ │ ├── popup.asm │ │ └── popup.exe │ ├── qikpad │ │ ├── filedlgs.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── qikpad.asm │ │ ├── qikpad.exe │ │ ├── qikpad.inc │ │ ├── rsrc.rc │ │ ├── rsrc.res │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ ├── toolbar.asm │ │ └── toolbar.bmp │ ├── regkey │ │ ├── mainicon.ico │ │ ├── regkey.asm │ │ ├── regkey.exe │ │ └── rsrc.rc │ ├── resdlg │ │ ├── resdlg.asm │ │ ├── resdlg.exe │ │ └── rsrc.rc │ ├── resdlg2 │ │ ├── icon1.ico │ │ ├── resdlg2.asm │ │ ├── resdlg2.exe │ │ └── rsrc.rc │ ├── showbmp │ │ ├── bitmap.bmp │ │ ├── ctrls.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── showbmp.asm │ │ ├── showbmp.exe │ │ └── showbmp.inc │ ├── showdib │ │ ├── apollo11.bmp │ │ ├── dibfile.asm │ │ ├── make.bat │ │ ├── printer.bmp │ │ ├── rsrc.rc │ │ ├── showdib2.asm │ │ └── showdib2.exe │ ├── smc │ │ ├── build.bat │ │ ├── smc.asm │ │ └── smc.exe │ └── splash │ │ ├── filedlgs.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── rsrc.res │ │ ├── splash.asm │ │ ├── splash.exe │ │ ├── splash.inc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm ├── exampl02 │ ├── appack │ │ ├── ap.ico │ │ ├── aplib.inc │ │ ├── aplib.lib │ │ ├── appack.asm │ │ ├── appack.exe │ │ ├── appack.inc │ │ ├── ctrls.asm │ │ ├── file0750.bmp │ │ ├── filedlgs.asm │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── cltst │ │ ├── cltst.asm │ │ └── cltst.exe │ ├── dir │ │ ├── mdir.asm │ │ └── mdir.exe │ ├── dispatch │ │ ├── dispatch.asm │ │ ├── dispatch.exe │ │ ├── dispatch.inc │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── dragdrop │ │ ├── dragdrop.asm │ │ ├── dragdrop.exe │ │ ├── dragdrop.inc │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── extdll │ │ ├── ctrls.asm │ │ ├── exdll.asm │ │ ├── exdll.exe │ │ ├── exdll.inc │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.RES │ │ ├── rsrc.rc │ │ ├── testdll.bas │ │ └── testdll.dll │ ├── gdibits │ │ ├── gdibits.asm │ │ ├── gdibits.exe │ │ ├── gdibits.inc │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── regkey2 │ │ ├── icon1.ico │ │ ├── regkey2.asm │ │ ├── regkey2.exe │ │ └── rsrc.rc │ ├── shellex │ │ ├── mainicon.ico │ │ ├── rsrc.rc │ │ ├── shellex.asm │ │ └── shellex.exe │ ├── textio │ │ ├── textio.asm │ │ └── textio.exe │ └── tstyle │ │ ├── tstyle1 │ │ ├── mainicon.ico │ │ ├── rsrc.rc │ │ ├── tstyle1.asm │ │ └── tstyle1.exe │ │ └── tstyle2 │ │ ├── mainicon.ico │ │ ├── rsrc.rc │ │ ├── tstyle2.asm │ │ └── tstyle2.exe ├── exampl03 │ ├── abstract │ │ ├── abstract.asm │ │ ├── abstract.exe │ │ ├── abstract.inc │ │ ├── domacros.asm │ │ ├── filedlgs.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── animate │ │ ├── animate.asm │ │ ├── animate.exe │ │ ├── animate.inc │ │ ├── bitmap.bmp │ │ ├── mainicon.ico │ │ └── rsrc.rc │ ├── arrays │ │ ├── arrays.asm │ │ ├── arrays.exe │ │ ├── arrays.ico │ │ ├── arrays.inc │ │ ├── dbmacros.asm │ │ ├── dbshow.dll │ │ ├── filedlgs.asm │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── bitblt │ │ ├── bitblt.asm │ │ ├── bitblt.exe │ │ ├── bitblt.inc │ │ ├── bitmap.bmp │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── bmpbutn │ │ ├── bmpbutns.asm │ │ ├── bmpbutns.exe │ │ ├── bmpbutns.inc │ │ ├── down.bmp │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ └── up.bmp │ ├── dialogs │ │ ├── ctrls.asm │ │ ├── dialogs.asm │ │ ├── dialogs.exe │ │ ├── dialogs.inc │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── ernie │ │ ├── ernie.asm │ │ ├── ernie.exe │ │ ├── ernie.inc │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ └── statusbr.asm │ ├── findfile │ │ ├── findfile.asm │ │ └── findfile.exe │ ├── lcd │ │ ├── lcd.asm │ │ ├── lcd.exe │ │ ├── lcd.rc │ │ ├── make.bat │ │ ├── make_debug.bat │ │ ├── printedtext.bmp │ │ └── prog.inc │ ├── menudemo │ │ ├── b05_cut.bmp │ │ ├── b05_cut4.bmp │ │ ├── b06_copy.bmp │ │ ├── b06_copy4.bmp │ │ ├── b07_paste.bmp │ │ ├── b07_paste4.bmp │ │ ├── b08_delete.bmp │ │ ├── b08_delete4.bmp │ │ ├── menudemo.asm │ │ ├── menudemo.exe │ │ └── rsrc.rc │ ├── multiwin │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── multiwin.asm │ │ ├── multiwin.exe │ │ ├── multiwin.inc │ │ └── rsrc.rc │ ├── qeplugin │ │ ├── blddll.bat │ │ ├── qeplugin.asm │ │ ├── qeplugin.def │ │ └── qeplugin.dll │ ├── scall │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── scall.asm │ │ ├── scall.exe │ │ └── scall.inc │ ├── splitter │ │ ├── mainicon.ico │ │ ├── rsrc.rc │ │ ├── splitter.asm │ │ └── splitter.exe │ ├── strchblt │ │ ├── bitmap.bmp │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── strchblt.asm │ │ ├── strchblt.exe │ │ └── strchblt.inc │ └── timer │ │ ├── makeit.bat │ │ ├── timer.asm │ │ ├── timer.exe │ │ └── timer.inc ├── exampl04 │ ├── altbuild │ │ ├── altbuild.asm │ │ ├── altbuild.exe │ │ ├── altbuild.ico │ │ ├── altbuild.inc │ │ ├── assemble.rsp │ │ ├── filedlgs.asm │ │ ├── link.rsp │ │ ├── makeit.bat │ │ ├── paint.asm │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ ├── toolbar.asm │ │ └── topxy.asm │ ├── butntest │ │ ├── btest.inc │ │ ├── btest.lib │ │ ├── butntest.asm │ │ ├── butntest.exe │ │ ├── butntest.ico │ │ ├── butntest.inc │ │ ├── lib │ │ │ ├── btest.inc │ │ │ ├── btest.lib │ │ │ ├── cbutn.asm │ │ │ ├── libmake.bat │ │ │ └── makefont.asm │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ └── statusbr.asm │ ├── car │ │ ├── car.asm │ │ ├── car.exe │ │ ├── car.ico │ │ ├── car.inc │ │ ├── car.jpg │ │ ├── image.inc │ │ ├── image.lib │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── cgidemo │ │ ├── cgidemo.asm │ │ └── cgidemo.exe │ ├── ecmenu │ │ ├── ecmenu.asm │ │ ├── ecmenu.bat │ │ ├── ecmenu.exe │ │ ├── icon1.ico │ │ ├── rsrc.rc │ │ └── temp.bmp │ ├── jacts │ │ ├── clock.ico │ │ ├── jacts.asm │ │ ├── jacts.exe │ │ └── rsrc.rc │ ├── listview │ │ ├── listview.asm │ │ ├── rgb │ │ │ ├── blue.txt │ │ │ ├── green.txt │ │ │ └── red.txt │ │ ├── rsrc.rc │ │ ├── testl.bmp │ │ └── tests.bmp │ ├── opengl │ │ ├── opengl.asm │ │ ├── opengl.exe │ │ └── rsrc.rc │ ├── pascal │ │ ├── gditute.rtf │ │ ├── makeit.bat │ │ ├── pascal.asm │ │ └── pascal.exe │ ├── regdemo │ │ ├── regdemo.asm │ │ ├── regdemo.exe │ │ ├── registry.ini │ │ └── rsrc.rc │ ├── treedemo │ │ ├── rsrc.rc │ │ ├── splith.cur │ │ ├── splitv.cur │ │ ├── treedemo.asm │ │ ├── treedemo.bmp │ │ └── treedemo.exe │ └── vkdbdemo │ │ ├── dberror.dll │ │ ├── dbmacros.asm │ │ ├── dbshow.dll │ │ ├── errormac.asm │ │ ├── filedlgs.asm │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ ├── toolbar.asm │ │ ├── vkdbdemo.asm │ │ ├── vkdbdemo.exe │ │ ├── vkdbdemo.ico │ │ └── vkdbdemo.inc ├── exampl05 │ ├── console │ │ ├── hashapp │ │ │ ├── primes │ │ │ │ ├── primes.asm │ │ │ │ └── primes.exe │ │ │ ├── ustrings.asm │ │ │ └── ustrings.exe │ │ ├── hello │ │ │ ├── hello.asm │ │ │ └── hello.exe │ │ └── stripcc │ │ │ ├── fake.c │ │ │ ├── stripcc.asm │ │ │ ├── stripcc.exe │ │ │ └── stripcc.inc │ ├── df │ │ ├── df.asm │ │ └── df.exe │ ├── dispatch │ │ ├── type1 │ │ │ ├── arrdisp.asm │ │ │ ├── arrdisp.exe │ │ │ ├── arrdisp.ico │ │ │ ├── arrdisp.inc │ │ │ ├── filedlgs.asm │ │ │ ├── makeit.bat │ │ │ ├── rsrc.rc │ │ │ ├── statusbr.asm │ │ │ ├── tbmacros.asm │ │ │ └── toolbar.asm │ │ └── type2 │ │ │ ├── arrdisp2.asm │ │ │ ├── arrdisp2.exe │ │ │ ├── arrdisp2.ico │ │ │ ├── arrdisp2.inc │ │ │ ├── filedlgs.asm │ │ │ ├── makeit.bat │ │ │ ├── rsrc.rc │ │ │ ├── statusbr.asm │ │ │ ├── tbmacros.asm │ │ │ └── toolbar.asm │ ├── download │ │ ├── download.asm │ │ └── download.exe │ ├── hexdump │ │ ├── filedlgs.asm │ │ ├── hexdump.asm │ │ ├── hexdump.exe │ │ ├── hexdump.ico │ │ ├── hexdump.inc │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── hlldemo │ │ ├── dosstyle │ │ │ ├── dosstyle.asm │ │ │ └── dosstyle.exe │ │ ├── fileio │ │ │ ├── fileio.asm │ │ │ └── fileio.exe │ │ ├── gettime │ │ │ ├── gettime.asm │ │ │ ├── gettime.exe │ │ │ └── makeit.bat │ │ ├── smalled │ │ │ ├── lib │ │ │ │ ├── makelib.bat │ │ │ │ ├── smalled.lib │ │ │ │ └── tstlib │ │ │ │ │ ├── makeit.bat │ │ │ │ │ ├── smalled.lib │ │ │ │ │ ├── tstlib.asm │ │ │ │ │ └── tstlib.exe │ │ │ ├── makeit.bat │ │ │ ├── redit.asm │ │ │ └── redit.exe │ │ └── string │ │ │ ├── makeit.bat │ │ │ ├── string.asm │ │ │ └── string.exe │ ├── line_tokenize │ │ ├── line_tokenize.asm │ │ └── line_tokenize.exe │ ├── mmfdemo │ │ ├── dll │ │ │ ├── disasm.txt │ │ │ ├── makeit.bat │ │ │ ├── mmfdll.asm │ │ │ ├── mmfdll.def │ │ │ ├── mmfdll.dll │ │ │ ├── mmfdll.exp │ │ │ ├── mmfdll.lib │ │ │ ├── test.txt │ │ │ └── tst.txt │ │ ├── makeit.bat │ │ ├── mmfdemo.asm │ │ ├── mmfdemo.exe │ │ ├── mmfdemo.ico │ │ ├── mmfdemo.inc │ │ ├── rsrc.rc │ │ ├── slave │ │ │ ├── dberror.dll │ │ │ ├── dbmacros.asm │ │ │ ├── dbshow.dll │ │ │ ├── errormac.asm │ │ │ ├── makeit.bat │ │ │ ├── prostart.set │ │ │ ├── rsrc.rc │ │ │ ├── slave.asm │ │ │ ├── slave.exe │ │ │ ├── slave.ico │ │ │ ├── slave.inc │ │ │ ├── statusbr.asm │ │ │ ├── tbmacros.asm │ │ │ └── toolbar.asm │ │ └── statusbr.asm │ ├── peimage │ │ ├── peimage.asm │ │ └── peimage.exe │ ├── proclen │ │ ├── proclen.asm │ │ ├── proclen.exe │ │ └── proclen.obj │ ├── protos │ │ ├── protos.asm │ │ └── protos.exe │ ├── rpg │ │ ├── rpg.asm │ │ └── rpg.exe │ ├── scroll │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── scroll.asm │ │ ├── scroll.exe │ │ ├── scroll.ico │ │ ├── scroll.inc │ │ └── statusbr.asm │ ├── switch │ │ ├── filedlgs.asm │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── switch.asm │ │ ├── switch.exe │ │ ├── switch.ico │ │ ├── switch.inc │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── table │ │ ├── ascidump.asm │ │ ├── dbtable.txt │ │ ├── filedlgs.asm │ │ ├── makeit.bat │ │ ├── maketabl.bas │ │ ├── rsrc.rc │ │ ├── statusbr.asm │ │ ├── table.asm │ │ ├── table.exe │ │ ├── table.ico │ │ ├── table.inc │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ └── unicode │ │ ├── resstrng │ │ ├── resstrng.asm │ │ ├── resstrng.exe │ │ └── rsrc.rc │ │ └── unicode │ │ ├── makeit.bat │ │ ├── unicode.asm │ │ └── unicode.exe ├── exampl06 │ ├── app_path │ │ ├── apth.asm │ │ └── apth.exe │ ├── barchart │ │ ├── barchart.asm │ │ ├── barchart.exe │ │ ├── barchart.ico │ │ ├── barchart.inc │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── bloat │ │ ├── hllemu.asm │ │ └── hllemu.exe │ ├── bubble │ │ ├── bubble.asm │ │ ├── bubble.exe │ │ └── makeit.bat │ ├── charcnt │ │ ├── charcnt.asm │ │ └── charcnt.exe │ ├── clear │ │ ├── clear.asm │ │ └── clear.exe │ ├── clipboard │ │ ├── cb.asm │ │ ├── cb.exe │ │ └── makeit.bat │ ├── emfilter │ │ ├── filter.asm │ │ └── filter.exe │ ├── escmake │ │ ├── escmake.asm │ │ └── escmake.exe │ ├── filesize │ │ ├── fs.asm │ │ ├── fs.exe │ │ └── makeit.bat │ ├── geti │ │ ├── geti.asm │ │ └── geti.exe │ ├── getini │ │ ├── getini.asm │ │ ├── getini.exe │ │ ├── getini.ini │ │ └── makeit.bat │ ├── jmptable │ │ ├── jmptable.asm │ │ ├── jmptable.exe │ │ └── makeit.bat │ ├── mntest │ │ ├── makeit.bat │ │ ├── mntest.asm │ │ └── mntest.exe │ ├── numformat │ │ ├── nfmt.asm │ │ └── nfmt.exe │ ├── pathinfo │ │ ├── makeit.bat │ │ ├── pathinfo.asm │ │ └── pathinfo.exe │ ├── peasant_multiply │ │ ├── pmul.asm │ │ └── pmul.exe │ ├── riched │ │ ├── Richedit.exe │ │ ├── file2000.bmp │ │ ├── filedlgs.asm │ │ ├── fileio.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── misc.asm │ │ ├── readme.txt │ │ ├── richedit.asm │ │ ├── richedit.inc │ │ ├── rsrc.rc │ │ ├── search.asm │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── rspace │ │ ├── makeit.bat │ │ ├── rs.asm │ │ └── rs.exe │ ├── scaption │ │ ├── makeit.bat │ │ ├── scaption.asm │ │ └── scaption.exe │ ├── sortdemo │ │ ├── makeit.bat │ │ ├── simple.asm │ │ └── simple.exe │ ├── sptrim │ │ ├── sptrim.asm │ │ └── sptrim.exe │ ├── stexp │ │ ├── stackexp.asm │ │ └── stackexp.exe │ ├── strclean │ │ ├── strclean.asm │ │ └── strclean.exe │ ├── touch │ │ ├── makeit.bat │ │ ├── touch.asm │ │ └── touch.exe │ ├── vhll │ │ ├── makeit.bat │ │ ├── smalled.lib │ │ ├── theworks.inc │ │ ├── vhll.asm │ │ └── vhll.exe │ └── vtable │ │ ├── dynamic │ │ ├── dynamic.asm │ │ ├── dynamic.exe │ │ └── vtdll.dll │ │ ├── makedll.bat │ │ ├── vtable.asm │ │ ├── vtable.exe │ │ ├── vtdll.asm │ │ ├── vtdll.def │ │ ├── vtdll.dll │ │ └── vtdll.lib ├── exampl07 │ ├── MemInfoMicro │ │ ├── MemInfoMicro.asm │ │ ├── MemInfoMicro.exe │ │ └── makeit.bat │ ├── ani │ │ ├── ani.asm │ │ ├── ani.exe │ │ ├── ani.ico │ │ ├── ani.inc │ │ ├── ani.xml │ │ ├── ani.zip │ │ ├── film.ani │ │ ├── makeit.bat │ │ └── rsrc.rc │ ├── dynarray │ │ ├── arr2dsk │ │ │ ├── arr2dsk.asm │ │ │ └── arr2dsk.exe │ │ ├── benchmrk │ │ │ ├── bmark.asm │ │ │ └── bmark.exe │ │ ├── loadfile │ │ │ ├── loadfile.asm │ │ │ └── loadfile.exe │ │ ├── readme.txt │ │ ├── realloc │ │ │ ├── realloc.asm │ │ │ └── realloc.exe │ │ └── simple │ │ │ ├── simple.asm │ │ │ └── simple.exe │ ├── fileio │ │ ├── append │ │ │ ├── append.asm │ │ │ └── append.exe │ │ ├── ppfileio.asm │ │ ├── ppfileio.exe │ │ └── testfile.txt │ ├── ftree │ │ ├── ftree.asm │ │ ├── ftree.exe │ │ └── makeit.bat │ ├── hscroll │ │ ├── hscroll.asm │ │ ├── hscroll.exe │ │ └── makeit.bat │ ├── lasterr │ │ ├── lasterr.asm │ │ └── lasterr.exe │ ├── long dir name │ │ ├── long file name.asm │ │ ├── long file name.exe │ │ └── makeit.bat │ ├── mangled │ │ ├── bluegrad.bmp │ │ ├── makeit.bat │ │ ├── mangled.asm │ │ ├── mangled.exe │ │ ├── mangled.ico │ │ ├── mangled.inc │ │ ├── mangled.xml │ │ ├── misc.asm │ │ ├── richedit.asm │ │ ├── rsrc.rc │ │ └── toolbar.bmp │ ├── masm1k │ │ ├── makeit.bat │ │ ├── masm1k.asm │ │ ├── masm1k.exe │ │ └── masm1k.inc │ ├── runcpl │ │ ├── manifest.xml │ │ ├── rsrc.rc │ │ ├── runcpl.asm │ │ └── runcpl.exe │ ├── sdw │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── rsrc.rc │ │ ├── sdw.asm │ │ └── sdw.exe │ ├── shelltst │ │ ├── sht.asm │ │ ├── sht.exe │ │ └── sht.obj │ ├── shuflarr │ │ ├── makeit.bat │ │ ├── sa.asm │ │ ├── sa.exe │ │ └── unique_riched │ │ │ ├── FILE2000.BMP │ │ │ ├── MAKEIT.BAT │ │ │ ├── README.TXT │ │ │ ├── Richedit.exe │ │ │ ├── confrm.asm │ │ │ ├── csrchdlg.asm │ │ │ ├── ectrl.asm │ │ │ ├── edproc.asm │ │ │ ├── getfn.asm │ │ │ ├── idat.asm │ │ │ ├── idat.txt │ │ │ ├── includes.asm │ │ │ ├── includes.txt │ │ │ ├── mainicon.ico │ │ │ ├── mrgfile.asm │ │ │ ├── ofcb.asm │ │ │ ├── richedit.asm │ │ │ ├── richedit.inc │ │ │ ├── rsrc.rc │ │ │ ├── sa.exe │ │ │ ├── savefn.asm │ │ │ ├── schproc.asm │ │ │ ├── setbmc.asm │ │ │ ├── sfcb.asm │ │ │ ├── slctfile.asm │ │ │ ├── status.asm │ │ │ ├── strmin.asm │ │ │ ├── strmout.asm │ │ │ ├── tbar.asm │ │ │ ├── tbmacros.asm │ │ │ ├── tpxy.asm │ │ │ ├── txtfnd.asm │ │ │ ├── udat.asm │ │ │ └── udat.txt │ ├── skins3 │ │ ├── bmp1.bmp │ │ ├── makeit.bat │ │ ├── resize.ico │ │ ├── rsrc.rc │ │ ├── side.bmp │ │ ├── skins3.asm │ │ ├── skins3.exe │ │ ├── skins3.ico │ │ ├── skins3.inc │ │ └── status.bmp │ ├── sleepex │ │ ├── sleepex.asm │ │ └── sleepex.exe │ ├── slickhuh │ │ ├── makeit.bat │ │ ├── readme.txt │ │ ├── slickhuh.asm │ │ └── slickhuh.exe │ ├── strarr │ │ ├── makeit.bat │ │ ├── strarr.asm │ │ └── strarr.exe │ ├── strings │ │ ├── strings.asm │ │ ├── strings.exe │ │ └── strings.inc │ ├── tokenise │ │ ├── makeit.bat │ │ ├── tokenise.asm │ │ └── tokenise.exe │ ├── ttbar │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── rsrc.rc │ │ ├── ttbar.asm │ │ └── ttbar.exe │ └── ttbar2 │ │ ├── bluegrad.bmp │ │ ├── makeit.bat │ │ ├── misc.asm │ │ ├── rsrc.rc │ │ ├── ttb2.asm │ │ ├── ttb2.exe │ │ ├── ttb2.ico │ │ └── ttb2.inc ├── poasm │ ├── dll │ │ ├── dlltst.asm │ │ ├── dlltst.exe │ │ ├── icon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── tstdll.dll │ │ ├── tstdll.lib │ │ └── tstdll │ │ │ ├── makeit.bat │ │ │ ├── tstdll.asm │ │ │ ├── tstdll.def │ │ │ ├── tstdll.dll │ │ │ └── tstdll.lib │ ├── fda2 │ │ ├── fda2.asm │ │ ├── fda2.exe │ │ ├── fda2.obj │ │ └── makeit.bat │ ├── poasm1k │ │ ├── makeit.bat │ │ ├── poasm1k.asm │ │ ├── poasm1k.exe │ │ └── poasm1k.inc │ ├── readme.txt │ ├── riched │ │ ├── Richedit.exe │ │ ├── file2000.bmp │ │ ├── filedlgs.asm │ │ ├── fileio.asm │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── misc.asm │ │ ├── readme.txt │ │ ├── richedit.asm │ │ ├── richedit.inc │ │ ├── rsrc.rc │ │ ├── search.asm │ │ ├── statusbr.asm │ │ ├── tbmacros.asm │ │ └── toolbar.asm │ ├── runcpl │ │ ├── makeit.bat │ │ ├── runcpl.asm │ │ └── runcpl.exe │ └── winenum │ │ ├── mainicon.ico │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── rsrc.res │ │ ├── winenum.asm │ │ └── winenum.exe ├── threads │ ├── mprocasm │ │ ├── makeit.bat │ │ ├── mprocasm.asm │ │ └── mprocasm.exe │ ├── multhread │ │ ├── makeit.bat │ │ ├── multhrd.asm │ │ ├── multhrd.exe │ │ └── multhrd.inc │ └── multidl │ │ ├── makeit.bat │ │ ├── multidl.asm │ │ └── multidl.exe ├── timer_demos │ ├── align │ │ ├── align_test.asm │ │ └── align_test.exe │ ├── readme.txt │ ├── strlen │ │ ├── strlen_test.asm │ │ └── strlen_test.exe │ ├── unroll │ │ ├── unroll_test.asm │ │ └── unroll_test.exe │ └── xchg │ │ ├── xchg_test.asm │ │ └── xchg_test.exe ├── unicode_extended │ ├── UnicodeTest_Console │ │ ├── UnicodeTest_Console.asm │ │ ├── UnicodeTest_Console.exe │ │ └── makeit.bat │ ├── UnicodeTest_GUI │ │ ├── Super_and_SubScript.inc │ │ ├── UnicodeTest_GUI.asm │ │ ├── UnicodeTest_GUI.exe │ │ ├── greek.inc │ │ └── makeit.bat │ ├── udlg │ │ ├── makeit.bat │ │ ├── manifest.xml │ │ ├── rsrc.rc │ │ ├── udlg.asm │ │ ├── udlg.exe │ │ ├── udlg.ico │ │ └── udlg.inc │ └── uwin2 │ │ ├── makeit.bat │ │ ├── rsrc.rc │ │ ├── uwin2.asm │ │ ├── uwin2.exe │ │ ├── uwin2.ico │ │ ├── uwin2.inc │ │ └── uwin2.xml └── unicode_generic │ ├── console │ ├── hello │ │ ├── hello.asm │ │ ├── hello.exe │ │ └── makeit.bat │ └── textio │ │ ├── makeit.bat │ │ ├── textio.asm │ │ └── textio.exe │ ├── diskfile │ ├── WININC.INC │ ├── diskfile.asm │ ├── diskfile.exe │ └── makeit.bat │ ├── multi_lingual │ ├── ansi.rc │ ├── makeit.bat │ ├── manifest.xml │ ├── multi_lingual.asm │ ├── multi_lingual.exe │ ├── multi_lingual.ico │ ├── multi_lingual.inc │ └── rsrc.rc │ ├── string_examples │ ├── append$ │ │ ├── append$.asm │ │ ├── append$.exe │ │ └── makeit.bat │ ├── cat$ │ │ ├── cat$.asm │ │ ├── cat$.exe │ │ └── makeit.bat │ ├── find$ │ │ ├── find$.asm │ │ ├── find$.exe │ │ └── makeit.bat │ └── switch$ │ │ ├── makeit.bat │ │ ├── switch$.asm │ │ └── switch$.exe │ └── template │ ├── bluegrad.bmp │ ├── makeit.bat │ ├── misc.asm │ ├── rsrc.rc │ ├── template.asm │ ├── template.exe │ ├── template.ico │ ├── template.inc │ ├── template.xml │ └── toolbar.bmp ├── fda.exe ├── fda32.exe ├── fpulib ├── Fpu.inc ├── FpuAbs.asm ├── FpuAdd.asm ├── FpuArccos.asm ├── FpuArccosh.asm ├── FpuArcsin.asm ├── FpuArcsinh.asm ├── FpuArctan.asm ├── FpuArctanh.asm ├── FpuAtoFL.asm ├── FpuChs.asm ├── FpuComp.asm ├── FpuCos.asm ├── FpuCosh.asm ├── FpuDiv.asm ├── FpuEexpX.asm ├── FpuExam.asm ├── FpuFLtoA.asm ├── FpuLnx.asm ├── FpuLogx.asm ├── FpuMul.asm ├── FpuRound.asm ├── FpuSin.asm ├── FpuSinh.asm ├── FpuSize.asm ├── FpuSqrt.asm ├── FpuState.asm ├── FpuSub.asm ├── FpuTan.asm ├── FpuTanh.asm ├── FpuTexpX.asm ├── FpuTrunc.asm ├── FpuXexpY.asm ├── MAKE.BAT ├── fpu.lib └── fpulib.txt ├── getcolor.exe ├── help ├── DateTime.chm ├── VKDebug.chm ├── asmintro.chm ├── fpuhelp.chm ├── hlhelp.chm ├── imdialog.chm ├── masm32.chm ├── masmlib.chm ├── opcodes.chm └── qeditor.chm ├── include ├── 1394bus.inc ├── DateTime.inc ├── RESOURCE.H ├── acledit.inc ├── aclui.inc ├── acpisim.inc ├── activeds.inc ├── adptif.inc ├── advapi32.inc ├── advapip.inc ├── advpack.inc ├── apidll.inc ├── appmgmts.inc ├── arbiter.inc ├── asycfilt.inc ├── authz.inc ├── basesrv.inc ├── batmeter.inc ├── battc.inc ├── bdasup.inc ├── bhsupp.inc ├── bignumsdk.inc ├── bldlibs.bat ├── cabinet.inc ├── ccfapi32.inc ├── certadm.inc ├── certidl.inc ├── cfgmgr.inc ├── cfgmgr32.inc ├── classpnp.inc ├── clusapi.inc ├── comctl32.inc ├── comdlg32.inc ├── compstui.inc ├── comsvcs.inc ├── credui.inc ├── crypt32.inc ├── cryptdll.inc ├── cryptnet.inc ├── cryptui.inc ├── cscdll.inc ├── csq.inc ├── d3d8.inc ├── d3dpmesh.inc ├── d3dx.inc ├── d3dx8.inc ├── d3dx8d.inc ├── d3dxof.inc ├── dbghelp.inc ├── ddraw.inc ├── debug.inc ├── decoder.inc ├── delayimp.inc ├── delayload.inc ├── devmgr.inc ├── dflayout.inc ├── dhcpcsvc.inc ├── dialogs.inc ├── dinput.inc ├── dinput8.inc ├── dlcapi.inc ├── dnsapi.inc ├── dnscrcli.inc ├── dnslib.inc ├── dnsperf.inc ├── dnsrpc.inc ├── dnsrslvr.inc ├── dplay.inc ├── dplayx.inc ├── dpmodemx.inc ├── dpserial.inc ├── dpwsock.inc ├── dpwsockx.inc ├── drmk.inc ├── dsetup.inc ├── dsound.inc ├── dsprop.inc ├── dssec.inc ├── dststlog.inc ├── dsuiext.inc ├── dtchelp.inc ├── dxapi.inc ├── elfapi.inc ├── esent.inc ├── excppkg.inc ├── exsup.inc ├── fci.inc ├── fdi.inc ├── feclient.inc ├── fpu.inc ├── framedyd.inc ├── framedyn.inc ├── ftsrch.inc ├── gapi32.inc ├── gdi32.inc ├── gdiplus.inc ├── glaux.inc ├── glmf32.inc ├── glu32.inc ├── gpedit.inc ├── hal.inc ├── hcaport.inc ├── hid.inc ├── hidclass.inc ├── hidparse.inc ├── hlink.inc ├── hpmon.inc ├── htmlhelp.inc ├── iashlpr.inc ├── icm32.inc ├── icmui.inc ├── iesetup.inc ├── imagehlp.inc ├── imgutil.inc ├── imm32.inc ├── inc2l.exe ├── incs.txt ├── inseng.inc ├── iphlpapi.inc ├── iprop.inc ├── kerbcli.inc ├── kernel32.inc ├── kernl32p.inc ├── ks.inc ├── ksecdd.inc ├── ksproxy.inc ├── ksuser.inc ├── libc.inc ├── libcpsx.inc ├── llsrpc.inc ├── loadperf.inc ├── logonsrv.inc ├── lsadll.inc ├── lsasrv.inc ├── lsasrvd.inc ├── lvcodek.inc ├── lz32.inc ├── mapi32.inc ├── masm32.inc ├── masm32rt.inc ├── mcd.inc ├── mcd32.inc ├── mcdsrv32.inc ├── mciole32.inc ├── mgmtapi.inc ├── miglib.inc ├── mmc.inc ├── mobsync.inc ├── mobsyncp.inc ├── mpr.inc ├── mprapi.inc ├── mprsnap.inc ├── mqmail.inc ├── mqrt.inc ├── msacm32.inc ├── msasn1.inc ├── mscms.inc ├── msdmo.inc ├── msi.inc ├── msimg32.inc ├── mspbase.inc ├── msports.inc ├── msrating.inc ├── mssachlp.inc ├── mstask.inc ├── msv1_0.inc ├── msvcrt.inc ├── mswsock.inc ├── mtx.inc ├── nal.inc ├── nddeapi.inc ├── ndis.inc ├── ndrd.inc ├── netapi32.inc ├── netlib.inc ├── netrap.inc ├── netui2.inc ├── newdev.inc ├── nia35det.inc ├── nibcdet.inc ├── nlmonlib.inc ├── nmapi.inc ├── nmsupp.inc ├── npptools.inc ├── nt.inc ├── ntdll.inc ├── ntdsa.inc ├── ntdsapi.inc ├── ntdsatq.inc ├── ntdsbcli.inc ├── ntdsetup.inc ├── ntfrsapi.inc ├── ntlanman.inc ├── ntlanui.inc ├── ntlsapi.inc ├── ntmarta.inc ├── ntmsapi.inc ├── ntoskrnl.inc ├── ntquery.inc ├── ntstrsafe.inc ├── ntvdm.inc ├── nwmon.inc ├── nwprint.inc ├── nwsaplib.inc ├── nwsevent.inc ├── nwslib.inc ├── odbc32.inc ├── odbccp32.inc ├── ole32.inc ├── oleacc.inc ├── oleaut32.inc ├── olecli32.inc ├── oledlg.inc ├── olepro32.inc ├── olesvr32.inc ├── opengl32.inc ├── oprghdlr.inc ├── parser.inc ├── pciidex.inc ├── pdh.inc ├── portcls.inc ├── powrprof.inc ├── psapi.inc ├── psxdll.inc ├── psxrtl.inc ├── ptilink.inc ├── qosname.inc ├── quartz.inc ├── query.inc ├── r81wdet.inc ├── randlib.inc ├── randlibk.inc ├── rasapi32.inc ├── rasdlg.inc ├── rassapi.inc ├── resutils.inc ├── rpcexts.inc ├── rpcndr.inc ├── rpcns4.inc ├── rpcproxy.inc ├── rpcrt4.inc ├── rpcutil.inc ├── rsa32sdk2.inc ├── rtm.inc ├── rtutils.inc ├── rxapi.inc ├── rxcommon.inc ├── samlib.inc ├── samsrv.inc ├── scarddlg.inc ├── scecli.inc ├── scesrv.inc ├── schannel.inc ├── sclogon.inc ├── scrnsave.inc ├── scrnsavw.inc ├── scsiport.inc ├── scsiwmi.inc ├── sdbus.inc ├── secur32.inc ├── security.inc ├── sens.inc ├── sensapi.inc ├── setupapi.inc ├── setupexts.inc ├── sfc.inc ├── sfcfiles.inc ├── shell32.inc ├── shfolder.inc ├── shlwapi.inc ├── sisbkup.inc ├── smbtrsup.inc ├── smclib.inc ├── snmpapi.inc ├── spoolss.inc ├── sporder.inc ├── srclient.inc ├── ssdpapi.inc ├── stdunk.inc ├── sti.inc ├── storport.inc ├── stream.inc ├── streams.inc ├── strmbasd.inc ├── strmbase.inc ├── syssetup.inc ├── tape.inc ├── tapi32.inc ├── tapi32l.inc ├── tcpip.inc ├── tcpip6.inc ├── tdi.inc ├── thunk32.inc ├── touch.exe ├── traffic.inc ├── tsec.inc ├── twain_32.inc ├── umpdddi.inc ├── umpnplib.inc ├── uniime.inc ├── urlmon.inc ├── usbcamd.inc ├── usbcamd2.inc ├── usbd.inc ├── user32.inc ├── userenv.inc ├── usp10.inc ├── uxtheme.inc ├── vccomsup.inc ├── vdmdbg.inc ├── version.inc ├── vfw32.inc ├── videoprt.inc ├── wdm.inc ├── wdmsec.inc ├── wiaservc.inc ├── wiautil.inc ├── win32k.inc ├── windows.inc ├── winextra.inc ├── winfax.inc ├── wininet.inc ├── winmm.inc ├── winppi.inc ├── winscard.inc ├── winspool.inc ├── winsta.inc ├── winstrm.inc ├── wintrust.inc ├── wldap32.inc ├── wmilib.inc ├── wmip.inc ├── wmvcore.inc ├── wow32.inc ├── ws2_32.inc ├── wshisotp.inc ├── wsnmp32.inc ├── wsock32.inc ├── wtsapi32.inc ├── xactsrv.inc ├── xaswitch.inc └── xolehlp.inc ├── intro.txt ├── jtmake.exe ├── libbat.qsc ├── licence ├── ddk_eula.txt ├── licence.htm └── sdk_eula.txt ├── m32lib ├── NameFromPathW.asm ├── PathOnlyW.asm ├── StdInW.asm ├── a2dw.asm ├── a2dw_ex.asm ├── a2wc.asm ├── about.asm ├── acisort.asm ├── aissort.asm ├── alloc.asm ├── appath.asm ├── appathw.asm ├── argbynum.asm ├── arr2file.asm ├── arr2mem.asm ├── arr2text.asm ├── arradd.asm ├── arralloc.asm ├── arrbin.asm ├── arrcnt.asm ├── arrdat.asm ├── arrealloc.asm ├── arrealoc.asm ├── arrextnd.asm ├── arrfile.asm ├── arrfree.asm ├── arrget.asm ├── arrlen.asm ├── arrmul.asm ├── arrset.asm ├── arrsub.asm ├── arrtotal.asm ├── arrtrunc.asm ├── arrtxt.asm ├── arrxtnd.asm ├── ascdump.asm ├── asqsort.asm ├── assort.asm ├── atodw.asm ├── atofp.asm ├── atol.asm ├── b2b_ex.asm ├── bcount.asm ├── bffolder.asm ├── bin2b_ex.asm ├── bin2hex.asm ├── bintbl.asm ├── bitmapfromfile.asm ├── bitmapfrommemory.asm ├── bitmapfrompicture.asm ├── bitmapfromresource.asm ├── bldarray.asm ├── bm.asm ├── bmh.asm ├── bmpbutn.asm ├── bsearch.asm ├── bubsrta.asm ├── bubsrtd.asm ├── ccsorta.asm ├── ccsortd.asm ├── chtyptbl.asm ├── circle.asm ├── clargs.asm ├── clargsc.asm ├── clearscr.asm ├── closemmf.asm ├── cmpi.asm ├── cmpmem.asm ├── colordlg.asm ├── combsrta.asm ├── combsrtd.asm ├── creatmmf.asm ├── cstsorta.asm ├── cstsortd.asm ├── dbmp.asm ├── dcisort.asm ├── decommnt.asm ├── dectbl.asm ├── dicon.asm ├── dissort.asm ├── dsqsort.asm ├── dssort.asm ├── dw2a.asm ├── dw2ah.asm ├── dw2b_ex.asm ├── dw2h_ex.asm ├── dw2hex.asm ├── dwtoa.asm ├── exist.asm ├── existW.asm ├── filesize.asm ├── filesizeW.asm ├── fntdlg.asm ├── fptoa.asm ├── fptoa2.asm ├── frame3d.asm ├── framegrp.asm ├── framewin.asm ├── free.asm ├── frmctrl.asm ├── getcbtxt.asm ├── getcl.asm ├── getcl_ex.asm ├── geterror.asm ├── getfile.asm ├── getip.asm ├── getlcnt.asm ├── getml.asm ├── getpcnt.asm ├── getpth.asm ├── gettext.asm ├── h2btbl.asm ├── hex2bin.asm ├── hexdump.asm ├── hexflip.asm ├── hextbl.asm ├── htodw.asm ├── instring.asm ├── intdiv.asm ├── intmul.asm ├── intsqrt.asm ├── ip2str.asm ├── isalpha.asm ├── isanum.asm ├── islower.asm ├── isnumber.asm ├── isupper.asm ├── lfcnt.asm ├── line.asm ├── link.rsp ├── loadlist.asm ├── locate.asm ├── lstdrivs.asm ├── ltoa.asm ├── ltok.asm ├── make.bat ├── masm32.inc ├── masm32.lib ├── memcopy.asm ├── memfill.asm ├── ml.rsp ├── namefpth.asm ├── nrand.asm ├── opendlg.asm ├── pagedlg.asm ├── parsline.asm ├── partial.asm ├── printdlg.asm ├── qsorta.asm ├── qsortd.asm ├── qstsorta.asm ├── qstsortd.asm ├── readdisk.asm ├── readdiskW.asm ├── readline.asm ├── reload.asm ├── resave.asm ├── retfont.asm ├── retkey.asm ├── riched1.asm ├── riched2.asm ├── roldata.asm ├── rordata.asm ├── rsync_ex.asm ├── runsync.asm ├── savedlg.asm ├── sbm.asm ├── setbmclr.asm ├── setcbtxt.asm ├── shell.asm ├── shell_ex.asm ├── ssorta.asm ├── ssortd.asm ├── stderr.asm ├── stderrw.asm ├── stdin.asm ├── stdout.asm ├── stdoutw.asm ├── stripi.asm ├── striplf.asm ├── stripx.asm ├── strlen.asm ├── szappend.asm ├── szcatstr.asm ├── szcmp.asm ├── szcmpi.asm ├── szcopy.asm ├── szleft.asm ├── szlen.asm ├── szlower.asm ├── szltrim.asm ├── szmid.asm ├── szmonosp.asm ├── szmulcat.asm ├── szremove.asm ├── szreplac.asm ├── szrev.asm ├── szright.asm ├── szrtrim.asm ├── sztrim.asm ├── szupper.asm ├── szwcnt.asm ├── testreg.asm ├── tstline.asm ├── ucArgByNum.asm ├── ucCmdTail.asm ├── ucGetCL.asm ├── ucMonoSpace.asm ├── ucappend.asm ├── uccat.asm ├── uccmp.asm ├── uccopy.asm ├── ucfind.asm ├── ucgetline.asm ├── ucleft.asm ├── uclen.asm ├── uclower.asm ├── ucltrim.asm ├── ucmid.asm ├── ucmulcat.asm ├── ucremove.asm ├── ucrep.asm ├── ucrev.asm ├── ucright.asm ├── ucrtrim.asm ├── ucupper.asm ├── ucwcnt.asm ├── udw2str.asm ├── uopendlg.asm ├── usavedlg.asm ├── ustr2dw.asm ├── vtile.asm ├── w2b_ex.asm ├── wait_key.asm ├── wordcnt.asm ├── wordrep.asm ├── writdisk.asm ├── writdiskW.asm ├── writline.asm ├── wshell.asm ├── wtok.asm └── xordata.asm ├── macros ├── lst.exe ├── macros.asm ├── pomacros.asm ├── timers.asm └── ucmacros.asm ├── makecimp.exe ├── makecon.qsc ├── makelibs.bat ├── makerc.qsc ├── maketbl.exe ├── mangle.exe ├── menuedit.dll ├── menus.ini ├── mnutoasm.exe ├── multitool.exe ├── plugins ├── ablockc.dll ├── bin2hex.dll ├── bin2qse.dll ├── blockp.dll ├── cblockc.dll ├── dumpcu.dll ├── fdpe.dll ├── hex2bin.dll ├── indentb.dll ├── regswap.dll ├── rtrim.dll └── txt2qse.dll ├── procmap.exe ├── procs ├── append.asm ├── button.asm ├── combo.asm ├── fname.asm ├── getargs.asm ├── getfldat.asm ├── hashtble.asm ├── loadfile.asm ├── loadlist.asm ├── lstbox.asm ├── msgboxi.asm ├── query.asm ├── richedml.asm ├── scanwrds.asm ├── sledit.asm ├── static.asm ├── stripasm.asm ├── stripcc.asm ├── topxy.asm └── wrt2disk.asm ├── prostart.exe ├── prostart.ini ├── prostart.set ├── pths.ini ├── qeditor.exe ├── qeint.bin ├── qetb.exe ├── qetxt.bin ├── qsc.dll ├── script ├── console.qse ├── dll.qse ├── extra │ ├── apimb.qse │ ├── contemp.qse │ ├── dup.qse │ ├── getfolder.qse │ ├── loadfile.qse │ ├── msgbox.qse │ ├── ozymandias.qse │ ├── structem.qse │ ├── tute1.qse │ └── txt2qse.qse ├── libmod.qse ├── makedlg.qse ├── makewin.qse └── plugin.qse ├── se.dll ├── shellex.exe ├── subclass.exe ├── testbed.qsc ├── testinst ├── makeit.bat ├── rsrc.rc ├── testinst.asm ├── testinst.inc ├── testinst.obj └── testinst.xml ├── text ├── blankdlg.txt ├── comment0.txt ├── comment1.txt ├── comment2.txt ├── comment3.txt ├── comment4.txt ├── comment5.txt ├── comment6.txt ├── comment7.txt ├── comment8.txt ├── contemp.txt ├── dbmsgbox.txt ├── dbprint.txt ├── epilog.txt ├── lasterr.txt ├── msgbox.txt ├── nops3.txt ├── pop3.txt ├── prolog.txt ├── push3.txt ├── rcversion.txt ├── samplerc.txt ├── switch$.txt ├── switch.txt ├── unicode.txt └── xmlfile.txt ├── tmp.qsc ├── tools ├── bin2db │ ├── bin2db.asm │ ├── bin2db.exe │ ├── bin2db.ico │ ├── bin2db.inc │ ├── bin2db.xml │ ├── bluegrad.bmp │ ├── makeit.bat │ ├── misc.asm │ ├── richedit.asm │ ├── rsrc.rc │ ├── tb256.bmp │ └── tbrgba.bmp ├── cpicker │ ├── cpicker.asm │ ├── cpicker.exe │ ├── cpicker.ico │ ├── cpicker.xml │ ├── makeit.bat │ └── rsrc.rc ├── def2inc │ └── def2inc.exe ├── fda │ ├── fda.asm │ ├── fda.exe │ └── makeit.bat ├── fda32 │ ├── bluegrad.bmp │ ├── fda32.asm │ ├── fda32.exe │ ├── fda32.ico │ ├── fda32.inc │ ├── fda32.xml │ ├── main.rc │ ├── makeit.bat │ ├── misc.asm │ ├── rsrc.rc │ └── toolbar.bmp ├── getcolor │ ├── getcolor.asm │ ├── getcolor.exe │ ├── getcolor.ico │ ├── getcolor.inc │ ├── makeit.bat │ ├── manifest.xml │ ├── picker.cur │ └── rsrc.rc ├── imp2inc │ └── imp2inc.exe ├── inc2l │ └── inc2l.exe ├── l2def │ └── l2def.exe ├── l2extia │ ├── argcount.asm │ ├── l2extia.exe │ └── l2extia.txt ├── l2inc │ └── l2inc.exe ├── lnkstubs │ ├── dumpbin │ │ ├── dumpbin.asm │ │ └── dumpbin.exe │ ├── editbin │ │ ├── editbin.asm │ │ └── editbin.exe │ └── lib │ │ ├── lib.asm │ │ └── lib.exe ├── makecimp │ ├── makecimp.asm │ ├── makecimp.exe │ ├── makecimp.txt │ ├── makevcrt.bat │ ├── msvcrt.txt │ └── vcrtdemo │ │ ├── vcrtdemo.asm │ │ └── vcrtdemo.exe ├── maketbl │ ├── makeit.bat │ ├── maketbl.asm │ ├── maketbl.exe │ ├── maketbl.inc │ ├── manifest.xml │ └── rsrc.rc ├── pproc │ ├── pproc.exe │ └── readme.txt └── tview │ ├── makeit.bat │ ├── rsrc.rc │ ├── tview.asm │ └── tview.exe ├── topgun.chm ├── topgun.exe ├── tproc.exe ├── tproc.txt ├── tutorial ├── console │ ├── demo1 │ │ ├── hello.asm │ │ └── hello.exe │ ├── demo2 │ │ ├── proc.asm │ │ └── proc.exe │ ├── demo3 │ │ ├── data.asm │ │ └── data.exe │ ├── demo4 │ │ ├── locals.asm │ │ └── locals.exe │ ├── demo5 │ │ ├── numbers.asm │ │ └── numbers.exe │ ├── demo6 │ │ ├── address.asm │ │ └── address.exe │ └── demo7 │ │ ├── complex.asm │ │ └── complex.exe ├── dlltute │ ├── dll │ │ ├── dlltute.asm │ │ ├── dlltute.def │ │ ├── dlltute.dll │ │ ├── dlltute.exp │ │ ├── dlltute.lib │ │ ├── dlltute.obj │ │ └── makeit.bat │ ├── masmdll.htm │ └── testapp │ │ ├── dlltute.dll │ │ ├── dlltute.lib │ │ ├── rsrc.rc │ │ ├── testapp.asm │ │ ├── testapp.exe │ │ └── testapp.ico ├── fputute │ ├── appen1.htm │ ├── fpuchap1.htm │ ├── fpuchap10.htm │ ├── fpuchap11.htm │ ├── fpuchap12.htm │ ├── fpuchap13.htm │ ├── fpuchap2.htm │ ├── fpuchap3.htm │ ├── fpuchap4.htm │ ├── fpuchap5.htm │ ├── fpuchap6.htm │ ├── fpuchap7.htm │ ├── fpuchap8.htm │ ├── fpuchap9.htm │ ├── fpufigs │ │ ├── bluewave.gif │ │ ├── cwfields.gif │ │ ├── equ1.gif │ │ ├── fpuregs.gif │ │ ├── fpustate.gif │ │ ├── packed.gif │ │ ├── real10.gif │ │ ├── real4.gif │ │ ├── real8.gif │ │ ├── swfields.gif │ │ └── tfields.gif │ └── index.html └── petute │ └── petute.chm ├── tview.exe ├── ueint.bin ├── uetxt.bin ├── uniedit.exe ├── vkdebug ├── dbgwin │ ├── dbgwin.asm │ ├── dbgwin.exe │ ├── dbgwin.inc │ ├── file.asm │ ├── file.inc │ ├── icons │ │ ├── delete.bmp │ │ ├── eye.ico │ │ ├── help.bmp │ │ ├── open.bmp │ │ ├── pin.bmp │ │ └── save.bmp │ ├── make.bat │ ├── registry.asm │ ├── registry.inc │ ├── rsrc.rc │ └── rsrc.res ├── dbproc │ ├── debug.asm │ ├── debug.inc │ ├── debug.lib │ ├── fpudump.asm │ ├── hexdump.asm │ ├── make.bat │ ├── spy.asm │ └── trapex.asm ├── example │ ├── demo1 │ │ ├── dbdemo.asm │ │ ├── dbdemo.obj │ │ ├── make.bat │ │ └── out.txt │ ├── dumpfpu │ │ ├── demo2.asm │ │ ├── demo2.exe │ │ └── make.bat │ ├── dumpmem │ │ ├── demo.asm │ │ ├── demo.exe │ │ └── make.bat │ ├── spy │ │ ├── make.bat │ │ ├── spy.asm │ │ └── spy.exe │ └── trapex │ │ ├── make.bat │ │ ├── readme.txt │ │ └── trapex.asm ├── extra │ └── dbghelp │ │ ├── dbghelp.dll │ │ └── dbghel~1 │ │ ├── build.bat │ │ ├── dbghelp.asm │ │ ├── dbghelp.def │ │ ├── dbghelp.inc │ │ ├── dbghelp.lib │ │ └── out.txt ├── readme.txt ├── setup.bat └── setup.pif └── wcsch.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/.gitignore -------------------------------------------------------------------------------- /bigtstbd.qsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bigtstbd.qsc -------------------------------------------------------------------------------- /bin/aniedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/aniedit.exe -------------------------------------------------------------------------------- /bin/bres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | \masm32\bin\rc /v rsrc.rc 3 | \masm32\bin\cvtres /machine:ix86 rsrc.res 4 | pause 5 | -------------------------------------------------------------------------------- /bin/cvtres.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/cvtres.exe -------------------------------------------------------------------------------- /bin/dbgwin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/dbgwin.exe -------------------------------------------------------------------------------- /bin/dumpbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/dumpbin.exe -------------------------------------------------------------------------------- /bin/dumppe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/dumppe.exe -------------------------------------------------------------------------------- /bin/editbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/editbin.exe -------------------------------------------------------------------------------- /bin/imagedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/imagedit.exe -------------------------------------------------------------------------------- /bin/imagedit.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/imagedit.hlp -------------------------------------------------------------------------------- /bin/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/lib.exe -------------------------------------------------------------------------------- /bin/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/link.exe -------------------------------------------------------------------------------- /bin/link16.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/link16.exe -------------------------------------------------------------------------------- /bin/ml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/ml.exe -------------------------------------------------------------------------------- /bin/msdis100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/msdis100.dll -------------------------------------------------------------------------------- /bin/msdis109.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/msdis109.dll -------------------------------------------------------------------------------- /bin/mspdb50.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/mspdb50.dll -------------------------------------------------------------------------------- /bin/poasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/poasm.exe -------------------------------------------------------------------------------- /bin/polib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/polib.exe -------------------------------------------------------------------------------- /bin/polink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/polink.exe -------------------------------------------------------------------------------- /bin/porc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/porc.dll -------------------------------------------------------------------------------- /bin/porc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/porc.exe -------------------------------------------------------------------------------- /bin/rc.GID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/rc.GID -------------------------------------------------------------------------------- /bin/rc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/rc.exe -------------------------------------------------------------------------------- /bin/rc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/rc.hlp -------------------------------------------------------------------------------- /bin/rcdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/rcdll.dll -------------------------------------------------------------------------------- /bin/zoomin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin/zoomin.exe -------------------------------------------------------------------------------- /bin2dbex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/bin2dbex.exe -------------------------------------------------------------------------------- /blankdlg.qsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/blankdlg.qsc -------------------------------------------------------------------------------- /blockp.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | -------------------------------------------------------------------------------- /cg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/cg.exe -------------------------------------------------------------------------------- /cg.ini: -------------------------------------------------------------------------------- 1 | \masm32\BIN\ 2 | \masm32\INCLUDE\ 3 | \masm32\LIB\ 4 | -------------------------------------------------------------------------------- /cpicker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/cpicker.exe -------------------------------------------------------------------------------- /datetime/DateTime.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/datetime/DateTime.lib -------------------------------------------------------------------------------- /datetime/demo/WorldTimes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/datetime/demo/WorldTimes.exe -------------------------------------------------------------------------------- /dlgmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/dlgmake.exe -------------------------------------------------------------------------------- /dlgproc.qsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/dlgproc.qsc -------------------------------------------------------------------------------- /dlgtmplt.qsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/dlgtmplt.qsc -------------------------------------------------------------------------------- /examples/Bill_Cravener/mvolume/volctrl.def: -------------------------------------------------------------------------------- 1 | LIBRARY VolCtrl 2 | EXPORTS GetMasterVolume 3 | EXPORTS SetMasterVolume 4 | EXPORTS CloseMasterVolume 5 | -------------------------------------------------------------------------------- /examples/Bill_Cravener/tabs/tabs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/Bill_Cravener/tabs/tabs.exe -------------------------------------------------------------------------------- /examples/Bill_Cravener/tabs/tabs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/Bill_Cravener/tabs/tabs.obj -------------------------------------------------------------------------------- /examples/advanced/msort/msort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/msort/msort.asm -------------------------------------------------------------------------------- /examples/advanced/msort/msort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/msort/msort.exe -------------------------------------------------------------------------------- /examples/advanced/scancode/scancode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/scancode/scancode.asm -------------------------------------------------------------------------------- /examples/advanced/scancode/scancode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/scancode/scancode.exe -------------------------------------------------------------------------------- /examples/advanced/uwords/uwords.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/uwords/uwords.asm -------------------------------------------------------------------------------- /examples/advanced/uwords/uwords.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/uwords/uwords.exe -------------------------------------------------------------------------------- /examples/advanced/wrep/result.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/wrep/result.asm -------------------------------------------------------------------------------- /examples/advanced/wrep/richedit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/wrep/richedit.asm -------------------------------------------------------------------------------- /examples/advanced/wrep/wrep.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/wrep/wrep.asm -------------------------------------------------------------------------------- /examples/advanced/wrep/wrep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/advanced/wrep/wrep.exe -------------------------------------------------------------------------------- /examples/dialogs/nested/nested.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/nested/nested.asm -------------------------------------------------------------------------------- /examples/dialogs/nested/nested.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/nested/nested.exe -------------------------------------------------------------------------------- /examples/dialogs/nested/nested.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/nested/nested.ico -------------------------------------------------------------------------------- /examples/dialogs/nested/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "nested.ico" 2 | -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/lib/about.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/lib/about.asm -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/lib/dlglib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/lib/dlglib.inc -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/lib/dlglib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/lib/dlglib.lib -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/lib/getip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/lib/getip.asm -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/lib/ip2str.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/lib/ip2str.asm -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/pbddemo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/pbddemo.asm -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/pbddemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/pbddemo.exe -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/pbddemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/pbddemo/pbddemo.ico -------------------------------------------------------------------------------- /examples/dialogs/pbddemo/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "pbddemo.ico" 2 | -------------------------------------------------------------------------------- /examples/dialogs/simple/simple.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/simple/simple.asm -------------------------------------------------------------------------------- /examples/dialogs/simple/simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/simple/simple.exe -------------------------------------------------------------------------------- /examples/dialogs/simple2/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "simple2.ico" 2 | -------------------------------------------------------------------------------- /examples/dialogs/simple2/simple2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/simple2/simple2.asm -------------------------------------------------------------------------------- /examples/dialogs/simple2/simple2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/simple2/simple2.exe -------------------------------------------------------------------------------- /examples/dialogs/simple2/simple2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/simple2/simple2.ico -------------------------------------------------------------------------------- /examples/dialogs/tests/tests.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/tests/tests.asm -------------------------------------------------------------------------------- /examples/dialogs/tests/tests.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs/tests/tests.exe -------------------------------------------------------------------------------- /examples/dialogs_later/basic/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/basic/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/calender/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/calender/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/check/check.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/check/check.asm -------------------------------------------------------------------------------- /examples/dialogs_later/check/check.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/check/check.exe -------------------------------------------------------------------------------- /examples/dialogs_later/check/check.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/check/check.ico -------------------------------------------------------------------------------- /examples/dialogs_later/check/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/check/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/gettext/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/gettext/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/image/image.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/image/image.asm -------------------------------------------------------------------------------- /examples/dialogs_later/image/image.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/image/image.exe -------------------------------------------------------------------------------- /examples/dialogs_later/image/image.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/image/image.ico -------------------------------------------------------------------------------- /examples/dialogs_later/image/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/image/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/lists/lists.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/lists/lists.asm -------------------------------------------------------------------------------- /examples/dialogs_later/lists/lists.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/lists/lists.exe -------------------------------------------------------------------------------- /examples/dialogs_later/lists/lists.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/lists/lists.ico -------------------------------------------------------------------------------- /examples/dialogs_later/lists/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/lists/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/progress/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/progress/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/radio/radio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/radio/radio.asm -------------------------------------------------------------------------------- /examples/dialogs_later/radio/radio.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/radio/radio.exe -------------------------------------------------------------------------------- /examples/dialogs_later/radio/radio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/radio/radio.ico -------------------------------------------------------------------------------- /examples/dialogs_later/radio/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/radio/rsrc.rc -------------------------------------------------------------------------------- /examples/dialogs_later/riched/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/dialogs_later/riched/rsrc.rc -------------------------------------------------------------------------------- /examples/enumerate/enumdd/enumdd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumdd/enumdd.asm -------------------------------------------------------------------------------- /examples/enumerate/enumdd/enumdd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumdd/enumdd.exe -------------------------------------------------------------------------------- /examples/enumerate/enumdd/enumdd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumdd/enumdd.ico -------------------------------------------------------------------------------- /examples/enumerate/enumdd/enumdd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumdd/enumdd.inc -------------------------------------------------------------------------------- /examples/enumerate/enumdd/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "enumdd.ico" 2 | 3 | -------------------------------------------------------------------------------- /examples/enumerate/enumwin/enumwin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumwin/enumwin.asm -------------------------------------------------------------------------------- /examples/enumerate/enumwin/enumwin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumwin/enumwin.exe -------------------------------------------------------------------------------- /examples/enumerate/enumwin/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumwin/mainicon.ico -------------------------------------------------------------------------------- /examples/enumerate/enumwin/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/enumwin/rsrc.rc -------------------------------------------------------------------------------- /examples/enumerate/pid/pid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/pid/pid.asm -------------------------------------------------------------------------------- /examples/enumerate/pid/pid.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/enumerate/pid/pid.exe -------------------------------------------------------------------------------- /examples/exampl01/3dframes/3dframes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/3dframes/3dframes.exe -------------------------------------------------------------------------------- /examples/exampl01/3dframes/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/3dframes/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl01/comctls/comctls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/comctls/comctls.exe -------------------------------------------------------------------------------- /examples/exampl01/dll/blddll.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/dll/blddll.pif -------------------------------------------------------------------------------- /examples/exampl01/dll/disasm.txt: -------------------------------------------------------------------------------- 1 | Can't open file 'F:\masm32\examples\exampl01\dll\tstdll.exe' 2 | -------------------------------------------------------------------------------- /examples/exampl01/dll/tstdll.def: -------------------------------------------------------------------------------- 1 | LIBRARY tstdll 2 | EXPORTS TestProc 3 | -------------------------------------------------------------------------------- /examples/exampl01/dll/tstdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/dll/tstdll.dll -------------------------------------------------------------------------------- /examples/exampl01/dll/tstdll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/dll/tstdll.exp -------------------------------------------------------------------------------- /examples/exampl01/dll/tstdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/dll/tstdll.lib -------------------------------------------------------------------------------- /examples/exampl01/generic/generic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/generic/generic.exe -------------------------------------------------------------------------------- /examples/exampl01/listbox/listbox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/listbox/listbox.exe -------------------------------------------------------------------------------- /examples/exampl01/mdidemo/mditest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/mdidemo/mditest.asm -------------------------------------------------------------------------------- /examples/exampl01/mdidemo/mditest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/mdidemo/mditest.exe -------------------------------------------------------------------------------- /examples/exampl01/minimum/minimum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/minimum/minimum.exe -------------------------------------------------------------------------------- /examples/exampl01/poplist/poplist.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/poplist/poplist.exe -------------------------------------------------------------------------------- /examples/exampl01/popup/popup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/popup/popup.exe -------------------------------------------------------------------------------- /examples/exampl01/qikpad/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/qikpad/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl01/qikpad/qikpad.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/qikpad/qikpad.asm -------------------------------------------------------------------------------- /examples/exampl01/qikpad/qikpad.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/qikpad/qikpad.exe -------------------------------------------------------------------------------- /examples/exampl01/qikpad/rsrc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/qikpad/rsrc.res -------------------------------------------------------------------------------- /examples/exampl01/qikpad/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/qikpad/toolbar.bmp -------------------------------------------------------------------------------- /examples/exampl01/regkey/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/regkey/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl01/regkey/regkey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/regkey/regkey.exe -------------------------------------------------------------------------------- /examples/exampl01/regkey/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl01/resdlg/resdlg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/resdlg/resdlg.exe -------------------------------------------------------------------------------- /examples/exampl01/resdlg2/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/resdlg2/icon1.ico -------------------------------------------------------------------------------- /examples/exampl01/resdlg2/resdlg2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/resdlg2/resdlg2.exe -------------------------------------------------------------------------------- /examples/exampl01/showbmp/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/showbmp/bitmap.bmp -------------------------------------------------------------------------------- /examples/exampl01/showbmp/showbmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/showbmp/showbmp.exe -------------------------------------------------------------------------------- /examples/exampl01/showdib/printer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/showdib/printer.bmp -------------------------------------------------------------------------------- /examples/exampl01/smc/smc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/smc/smc.exe -------------------------------------------------------------------------------- /examples/exampl01/splash/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/splash/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl01/splash/rsrc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/splash/rsrc.res -------------------------------------------------------------------------------- /examples/exampl01/splash/splash.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/splash/splash.asm -------------------------------------------------------------------------------- /examples/exampl01/splash/splash.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl01/splash/splash.exe -------------------------------------------------------------------------------- /examples/exampl02/appack/ap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/appack/ap.ico -------------------------------------------------------------------------------- /examples/exampl02/appack/aplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/appack/aplib.lib -------------------------------------------------------------------------------- /examples/exampl02/appack/appack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/appack/appack.asm -------------------------------------------------------------------------------- /examples/exampl02/appack/appack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/appack/appack.exe -------------------------------------------------------------------------------- /examples/exampl02/appack/file0750.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/appack/file0750.bmp -------------------------------------------------------------------------------- /examples/exampl02/cltst/cltst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/cltst/cltst.exe -------------------------------------------------------------------------------- /examples/exampl02/dir/mdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/dir/mdir.exe -------------------------------------------------------------------------------- /examples/exampl02/dispatch/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl02/dragdrop/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl02/extdll/exdll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/extdll/exdll.exe -------------------------------------------------------------------------------- /examples/exampl02/extdll/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/extdll/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl02/extdll/rsrc.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/extdll/rsrc.RES -------------------------------------------------------------------------------- /examples/exampl02/extdll/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl02/extdll/testdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/extdll/testdll.dll -------------------------------------------------------------------------------- /examples/exampl02/gdibits/gdibits.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/gdibits/gdibits.exe -------------------------------------------------------------------------------- /examples/exampl02/gdibits/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl02/regkey2/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/regkey2/icon1.ico -------------------------------------------------------------------------------- /examples/exampl02/regkey2/regkey2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/regkey2/regkey2.exe -------------------------------------------------------------------------------- /examples/exampl02/shellex/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl02/shellex/shellex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/shellex/shellex.exe -------------------------------------------------------------------------------- /examples/exampl02/textio/textio.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl02/textio/textio.exe -------------------------------------------------------------------------------- /examples/exampl02/tstyle/tstyle1/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO" 2 | -------------------------------------------------------------------------------- /examples/exampl03/animate/animate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/animate/animate.exe -------------------------------------------------------------------------------- /examples/exampl03/animate/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/animate/bitmap.bmp -------------------------------------------------------------------------------- /examples/exampl03/arrays/arrays.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/arrays/arrays.asm -------------------------------------------------------------------------------- /examples/exampl03/arrays/arrays.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/arrays/arrays.exe -------------------------------------------------------------------------------- /examples/exampl03/arrays/arrays.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/arrays/arrays.ico -------------------------------------------------------------------------------- /examples/exampl03/arrays/dbshow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/arrays/dbshow.dll -------------------------------------------------------------------------------- /examples/exampl03/bitblt/bitblt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/bitblt/bitblt.exe -------------------------------------------------------------------------------- /examples/exampl03/bitblt/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/bitblt/bitmap.bmp -------------------------------------------------------------------------------- /examples/exampl03/bitblt/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/bitblt/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl03/bmpbutn/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/bmpbutn/down.bmp -------------------------------------------------------------------------------- /examples/exampl03/bmpbutn/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/bmpbutn/up.bmp -------------------------------------------------------------------------------- /examples/exampl03/dialogs/dialogs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/dialogs/dialogs.asm -------------------------------------------------------------------------------- /examples/exampl03/dialogs/dialogs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/dialogs/dialogs.exe -------------------------------------------------------------------------------- /examples/exampl03/ernie/ernie.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/ernie/ernie.asm -------------------------------------------------------------------------------- /examples/exampl03/ernie/ernie.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/ernie/ernie.exe -------------------------------------------------------------------------------- /examples/exampl03/ernie/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/ernie/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl03/lcd/lcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/lcd/lcd.asm -------------------------------------------------------------------------------- /examples/exampl03/lcd/lcd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/lcd/lcd.exe -------------------------------------------------------------------------------- /examples/exampl03/lcd/printedtext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/lcd/printedtext.bmp -------------------------------------------------------------------------------- /examples/exampl03/qeplugin/qeplugin.def: -------------------------------------------------------------------------------- 1 | LIBRARY qeplugin 2 | EXPORTS QePlugIn 3 | -------------------------------------------------------------------------------- /examples/exampl03/scall/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/scall/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl03/scall/scall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/scall/scall.asm -------------------------------------------------------------------------------- /examples/exampl03/scall/scall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/scall/scall.exe -------------------------------------------------------------------------------- /examples/exampl03/strchblt/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/strchblt/bitmap.bmp -------------------------------------------------------------------------------- /examples/exampl03/timer/timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/timer/timer.asm -------------------------------------------------------------------------------- /examples/exampl03/timer/timer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/timer/timer.exe -------------------------------------------------------------------------------- /examples/exampl03/timer/timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl03/timer/timer.inc -------------------------------------------------------------------------------- /examples/exampl04/altbuild/assemble.rsp: -------------------------------------------------------------------------------- 1 | altbuild.asm 2 | paint.asm 3 | topxy.asm 4 | -------------------------------------------------------------------------------- /examples/exampl04/altbuild/link.rsp: -------------------------------------------------------------------------------- 1 | altbuild.obj 2 | paint.obj 3 | topxy.obj 4 | -------------------------------------------------------------------------------- /examples/exampl04/butntest/btest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/butntest/btest.lib -------------------------------------------------------------------------------- /examples/exampl04/butntest/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "butntest.ico" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl04/car/car.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/car/car.exe -------------------------------------------------------------------------------- /examples/exampl04/car/car.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/car/car.ico -------------------------------------------------------------------------------- /examples/exampl04/car/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/car/car.jpg -------------------------------------------------------------------------------- /examples/exampl04/car/image.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/car/image.inc -------------------------------------------------------------------------------- /examples/exampl04/car/image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/car/image.lib -------------------------------------------------------------------------------- /examples/exampl04/car/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "car.ico" 2 | 3 | 2000 IMAGE DISCARDABLE "car.jpg" 4 | 5 | -------------------------------------------------------------------------------- /examples/exampl04/cgidemo/cgidemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/cgidemo/cgidemo.exe -------------------------------------------------------------------------------- /examples/exampl04/ecmenu/ecmenu.bat: -------------------------------------------------------------------------------- 1 | SET PATH=\MASM32\BIN 2 | \MASM32\BIN\NMAKE ecmenu.MAK -B 3 | -------------------------------------------------------------------------------- /examples/exampl04/ecmenu/ecmenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/ecmenu/ecmenu.exe -------------------------------------------------------------------------------- /examples/exampl04/ecmenu/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/ecmenu/icon1.ico -------------------------------------------------------------------------------- /examples/exampl04/ecmenu/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/ecmenu/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl04/ecmenu/temp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/ecmenu/temp.bmp -------------------------------------------------------------------------------- /examples/exampl04/jacts/clock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/jacts/clock.ico -------------------------------------------------------------------------------- /examples/exampl04/jacts/jacts.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/jacts/jacts.exe -------------------------------------------------------------------------------- /examples/exampl04/listview/rgb/blue.txt: -------------------------------------------------------------------------------- 1 | BLUE 2 | -------------------------------------------------------------------------------- /examples/exampl04/listview/rgb/green.txt: -------------------------------------------------------------------------------- 1 | GREEN 2 | -------------------------------------------------------------------------------- /examples/exampl04/listview/rgb/red.txt: -------------------------------------------------------------------------------- 1 | RED 2 | -------------------------------------------------------------------------------- /examples/exampl04/listview/testl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/listview/testl.bmp -------------------------------------------------------------------------------- /examples/exampl04/listview/tests.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/listview/tests.bmp -------------------------------------------------------------------------------- /examples/exampl04/opengl/opengl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/opengl/opengl.exe -------------------------------------------------------------------------------- /examples/exampl04/pascal/pascal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/pascal/pascal.asm -------------------------------------------------------------------------------- /examples/exampl04/pascal/pascal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/pascal/pascal.exe -------------------------------------------------------------------------------- /examples/exampl04/regdemo/regdemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/regdemo/regdemo.exe -------------------------------------------------------------------------------- /examples/exampl04/treedemo/splith.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/treedemo/splith.cur -------------------------------------------------------------------------------- /examples/exampl04/treedemo/splitv.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/treedemo/splitv.cur -------------------------------------------------------------------------------- /examples/exampl04/vkdbdemo/dbshow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl04/vkdbdemo/dbshow.dll -------------------------------------------------------------------------------- /examples/exampl05/df/df.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/df/df.asm -------------------------------------------------------------------------------- /examples/exampl05/df/df.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/df/df.exe -------------------------------------------------------------------------------- /examples/exampl05/hexdump/hexdump.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/hexdump/hexdump.asm -------------------------------------------------------------------------------- /examples/exampl05/hexdump/hexdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/hexdump/hexdump.exe -------------------------------------------------------------------------------- /examples/exampl05/hexdump/hexdump.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/hexdump/hexdump.ico -------------------------------------------------------------------------------- /examples/exampl05/mmfdemo/dll/disasm.txt: -------------------------------------------------------------------------------- 1 | Can't open file 'd:\masm32\example5\mmfdemo\dll\mmfdll.exe' 2 | -------------------------------------------------------------------------------- /examples/exampl05/mmfdemo/dll/mmfdll.def: -------------------------------------------------------------------------------- 1 | LIBRARY mmfdll 2 | EXPORTS function1 @1 NONAME -------------------------------------------------------------------------------- /examples/exampl05/mmfdemo/mmfdemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/mmfdemo/mmfdemo.exe -------------------------------------------------------------------------------- /examples/exampl05/mmfdemo/mmfdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/mmfdemo/mmfdemo.ico -------------------------------------------------------------------------------- /examples/exampl05/mmfdemo/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "mmfdemo.ico" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl05/mmfdemo/slave/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "slave.ico" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl05/peimage/peimage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/peimage/peimage.asm -------------------------------------------------------------------------------- /examples/exampl05/peimage/peimage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/peimage/peimage.exe -------------------------------------------------------------------------------- /examples/exampl05/proclen/proclen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/proclen/proclen.asm -------------------------------------------------------------------------------- /examples/exampl05/proclen/proclen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/proclen/proclen.exe -------------------------------------------------------------------------------- /examples/exampl05/proclen/proclen.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/proclen/proclen.obj -------------------------------------------------------------------------------- /examples/exampl05/protos/protos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/protos/protos.asm -------------------------------------------------------------------------------- /examples/exampl05/protos/protos.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/protos/protos.exe -------------------------------------------------------------------------------- /examples/exampl05/rpg/rpg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/rpg/rpg.asm -------------------------------------------------------------------------------- /examples/exampl05/rpg/rpg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/rpg/rpg.exe -------------------------------------------------------------------------------- /examples/exampl05/scroll/scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/scroll/scroll.asm -------------------------------------------------------------------------------- /examples/exampl05/scroll/scroll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/scroll/scroll.exe -------------------------------------------------------------------------------- /examples/exampl05/scroll/scroll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/scroll/scroll.ico -------------------------------------------------------------------------------- /examples/exampl05/switch/switch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/switch/switch.asm -------------------------------------------------------------------------------- /examples/exampl05/switch/switch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/switch/switch.exe -------------------------------------------------------------------------------- /examples/exampl05/switch/switch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/switch/switch.ico -------------------------------------------------------------------------------- /examples/exampl05/table/table.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/table/table.asm -------------------------------------------------------------------------------- /examples/exampl05/table/table.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/table/table.exe -------------------------------------------------------------------------------- /examples/exampl05/table/table.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl05/table/table.ico -------------------------------------------------------------------------------- /examples/exampl06/app_path/apth.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/app_path/apth.asm -------------------------------------------------------------------------------- /examples/exampl06/app_path/apth.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/app_path/apth.exe -------------------------------------------------------------------------------- /examples/exampl06/barchart/rsrc.rc: -------------------------------------------------------------------------------- 1 | 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "barchart.ico" 2 | 3 | -------------------------------------------------------------------------------- /examples/exampl06/bloat/hllemu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/bloat/hllemu.asm -------------------------------------------------------------------------------- /examples/exampl06/bloat/hllemu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/bloat/hllemu.exe -------------------------------------------------------------------------------- /examples/exampl06/bubble/bubble.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/bubble/bubble.asm -------------------------------------------------------------------------------- /examples/exampl06/bubble/bubble.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/bubble/bubble.exe -------------------------------------------------------------------------------- /examples/exampl06/charcnt/charcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/charcnt/charcnt.asm -------------------------------------------------------------------------------- /examples/exampl06/charcnt/charcnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/charcnt/charcnt.exe -------------------------------------------------------------------------------- /examples/exampl06/clear/clear.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/clear/clear.asm -------------------------------------------------------------------------------- /examples/exampl06/clear/clear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/clear/clear.exe -------------------------------------------------------------------------------- /examples/exampl06/clipboard/cb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/clipboard/cb.asm -------------------------------------------------------------------------------- /examples/exampl06/clipboard/cb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/clipboard/cb.exe -------------------------------------------------------------------------------- /examples/exampl06/emfilter/filter.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/emfilter/filter.asm -------------------------------------------------------------------------------- /examples/exampl06/emfilter/filter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/emfilter/filter.exe -------------------------------------------------------------------------------- /examples/exampl06/escmake/escmake.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/escmake/escmake.asm -------------------------------------------------------------------------------- /examples/exampl06/escmake/escmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/escmake/escmake.exe -------------------------------------------------------------------------------- /examples/exampl06/filesize/fs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/filesize/fs.asm -------------------------------------------------------------------------------- /examples/exampl06/filesize/fs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/filesize/fs.exe -------------------------------------------------------------------------------- /examples/exampl06/geti/geti.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/geti/geti.asm -------------------------------------------------------------------------------- /examples/exampl06/geti/geti.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/geti/geti.exe -------------------------------------------------------------------------------- /examples/exampl06/getini/getini.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/getini/getini.asm -------------------------------------------------------------------------------- /examples/exampl06/getini/getini.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/getini/getini.exe -------------------------------------------------------------------------------- /examples/exampl06/getini/getini.ini: -------------------------------------------------------------------------------- 1 | Text item one 2 | Text item two 3 | var = 1234 4 | c:\windows\system 5 | 1024 6 | -------------------------------------------------------------------------------- /examples/exampl06/mntest/mntest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/mntest/mntest.asm -------------------------------------------------------------------------------- /examples/exampl06/mntest/mntest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/mntest/mntest.exe -------------------------------------------------------------------------------- /examples/exampl06/numformat/nfmt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/numformat/nfmt.asm -------------------------------------------------------------------------------- /examples/exampl06/numformat/nfmt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/numformat/nfmt.exe -------------------------------------------------------------------------------- /examples/exampl06/riched/Richedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/riched/Richedit.exe -------------------------------------------------------------------------------- /examples/exampl06/riched/file2000.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/riched/file2000.bmp -------------------------------------------------------------------------------- /examples/exampl06/riched/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/riched/mainicon.ico -------------------------------------------------------------------------------- /examples/exampl06/riched/richedit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/riched/richedit.asm -------------------------------------------------------------------------------- /examples/exampl06/riched/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/riched/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl06/rspace/rs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/rspace/rs.asm -------------------------------------------------------------------------------- /examples/exampl06/rspace/rs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/rspace/rs.exe -------------------------------------------------------------------------------- /examples/exampl06/sortdemo/simple.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/sortdemo/simple.asm -------------------------------------------------------------------------------- /examples/exampl06/sortdemo/simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/sortdemo/simple.exe -------------------------------------------------------------------------------- /examples/exampl06/sptrim/sptrim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/sptrim/sptrim.asm -------------------------------------------------------------------------------- /examples/exampl06/sptrim/sptrim.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/sptrim/sptrim.exe -------------------------------------------------------------------------------- /examples/exampl06/stexp/stackexp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/stexp/stackexp.asm -------------------------------------------------------------------------------- /examples/exampl06/stexp/stackexp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/stexp/stackexp.exe -------------------------------------------------------------------------------- /examples/exampl06/touch/touch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/touch/touch.asm -------------------------------------------------------------------------------- /examples/exampl06/touch/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/touch/touch.exe -------------------------------------------------------------------------------- /examples/exampl06/vhll/smalled.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vhll/smalled.lib -------------------------------------------------------------------------------- /examples/exampl06/vhll/vhll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vhll/vhll.asm -------------------------------------------------------------------------------- /examples/exampl06/vhll/vhll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vhll/vhll.exe -------------------------------------------------------------------------------- /examples/exampl06/vtable/vtable.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vtable/vtable.asm -------------------------------------------------------------------------------- /examples/exampl06/vtable/vtable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vtable/vtable.exe -------------------------------------------------------------------------------- /examples/exampl06/vtable/vtdll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vtable/vtdll.asm -------------------------------------------------------------------------------- /examples/exampl06/vtable/vtdll.def: -------------------------------------------------------------------------------- 1 | LIBRARY vtdll 2 | EXPORTS vtquery -------------------------------------------------------------------------------- /examples/exampl06/vtable/vtdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vtable/vtdll.dll -------------------------------------------------------------------------------- /examples/exampl06/vtable/vtdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl06/vtable/vtdll.lib -------------------------------------------------------------------------------- /examples/exampl07/ani/ani.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/ani.asm -------------------------------------------------------------------------------- /examples/exampl07/ani/ani.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/ani.exe -------------------------------------------------------------------------------- /examples/exampl07/ani/ani.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/ani.ico -------------------------------------------------------------------------------- /examples/exampl07/ani/ani.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/ani.inc -------------------------------------------------------------------------------- /examples/exampl07/ani/ani.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/ani.zip -------------------------------------------------------------------------------- /examples/exampl07/ani/film.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/film.ani -------------------------------------------------------------------------------- /examples/exampl07/ani/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ani/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl07/fileio/ppfileio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/fileio/ppfileio.asm -------------------------------------------------------------------------------- /examples/exampl07/fileio/ppfileio.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/fileio/ppfileio.exe -------------------------------------------------------------------------------- /examples/exampl07/fileio/testfile.txt: -------------------------------------------------------------------------------- 1 | Test String Additional data appended 2 | -------------------------------------------------------------------------------- /examples/exampl07/ftree/ftree.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ftree/ftree.asm -------------------------------------------------------------------------------- /examples/exampl07/ftree/ftree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ftree/ftree.exe -------------------------------------------------------------------------------- /examples/exampl07/hscroll/hscroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/hscroll/hscroll.asm -------------------------------------------------------------------------------- /examples/exampl07/hscroll/hscroll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/hscroll/hscroll.exe -------------------------------------------------------------------------------- /examples/exampl07/lasterr/lasterr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/lasterr/lasterr.asm -------------------------------------------------------------------------------- /examples/exampl07/lasterr/lasterr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/lasterr/lasterr.exe -------------------------------------------------------------------------------- /examples/exampl07/mangled/mangled.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/mangled.asm -------------------------------------------------------------------------------- /examples/exampl07/mangled/mangled.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/mangled.exe -------------------------------------------------------------------------------- /examples/exampl07/mangled/mangled.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/mangled.ico -------------------------------------------------------------------------------- /examples/exampl07/mangled/mangled.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/mangled.inc -------------------------------------------------------------------------------- /examples/exampl07/mangled/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/misc.asm -------------------------------------------------------------------------------- /examples/exampl07/mangled/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl07/mangled/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/mangled/toolbar.bmp -------------------------------------------------------------------------------- /examples/exampl07/masm1k/masm1k.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/masm1k/masm1k.asm -------------------------------------------------------------------------------- /examples/exampl07/masm1k/masm1k.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/masm1k/masm1k.exe -------------------------------------------------------------------------------- /examples/exampl07/runcpl/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/runcpl/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl07/runcpl/runcpl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/runcpl/runcpl.asm -------------------------------------------------------------------------------- /examples/exampl07/runcpl/runcpl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/runcpl/runcpl.exe -------------------------------------------------------------------------------- /examples/exampl07/sdw/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/sdw/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl07/sdw/sdw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/sdw/sdw.asm -------------------------------------------------------------------------------- /examples/exampl07/sdw/sdw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/sdw/sdw.exe -------------------------------------------------------------------------------- /examples/exampl07/shelltst/sht.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/shelltst/sht.asm -------------------------------------------------------------------------------- /examples/exampl07/shelltst/sht.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/shelltst/sht.exe -------------------------------------------------------------------------------- /examples/exampl07/shelltst/sht.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/shelltst/sht.obj -------------------------------------------------------------------------------- /examples/exampl07/shuflarr/sa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/shuflarr/sa.asm -------------------------------------------------------------------------------- /examples/exampl07/shuflarr/sa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/shuflarr/sa.exe -------------------------------------------------------------------------------- /examples/exampl07/skins3/bmp1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/bmp1.bmp -------------------------------------------------------------------------------- /examples/exampl07/skins3/resize.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/resize.ico -------------------------------------------------------------------------------- /examples/exampl07/skins3/side.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/side.bmp -------------------------------------------------------------------------------- /examples/exampl07/skins3/skins3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/skins3.asm -------------------------------------------------------------------------------- /examples/exampl07/skins3/skins3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/skins3.exe -------------------------------------------------------------------------------- /examples/exampl07/skins3/skins3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/skins3.ico -------------------------------------------------------------------------------- /examples/exampl07/skins3/skins3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/skins3.inc -------------------------------------------------------------------------------- /examples/exampl07/skins3/status.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/skins3/status.bmp -------------------------------------------------------------------------------- /examples/exampl07/sleepex/sleepex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/sleepex/sleepex.asm -------------------------------------------------------------------------------- /examples/exampl07/sleepex/sleepex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/sleepex/sleepex.exe -------------------------------------------------------------------------------- /examples/exampl07/strarr/strarr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/strarr/strarr.asm -------------------------------------------------------------------------------- /examples/exampl07/strarr/strarr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/strarr/strarr.exe -------------------------------------------------------------------------------- /examples/exampl07/strings/strings.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/strings/strings.asm -------------------------------------------------------------------------------- /examples/exampl07/strings/strings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/strings/strings.exe -------------------------------------------------------------------------------- /examples/exampl07/ttbar/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl07/ttbar/ttbar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar/ttbar.asm -------------------------------------------------------------------------------- /examples/exampl07/ttbar/ttbar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar/ttbar.exe -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/bluegrad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/bluegrad.bmp -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/misc.asm -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/rsrc.rc -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/ttb2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/ttb2.asm -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/ttb2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/ttb2.exe -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/ttb2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/ttb2.ico -------------------------------------------------------------------------------- /examples/exampl07/ttbar2/ttb2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/exampl07/ttbar2/ttb2.inc -------------------------------------------------------------------------------- /examples/poasm/dll/dlltst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/dlltst.asm -------------------------------------------------------------------------------- /examples/poasm/dll/dlltst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/dlltst.exe -------------------------------------------------------------------------------- /examples/poasm/dll/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/icon.ico -------------------------------------------------------------------------------- /examples/poasm/dll/tstdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/tstdll.dll -------------------------------------------------------------------------------- /examples/poasm/dll/tstdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/tstdll.lib -------------------------------------------------------------------------------- /examples/poasm/dll/tstdll/tstdll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/tstdll/tstdll.asm -------------------------------------------------------------------------------- /examples/poasm/dll/tstdll/tstdll.def: -------------------------------------------------------------------------------- 1 | LIBRARY tstdll 2 | EXPORTS 3 | "_tstproc@4" -------------------------------------------------------------------------------- /examples/poasm/dll/tstdll/tstdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/tstdll/tstdll.dll -------------------------------------------------------------------------------- /examples/poasm/dll/tstdll/tstdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/dll/tstdll/tstdll.lib -------------------------------------------------------------------------------- /examples/poasm/fda2/fda2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/fda2/fda2.asm -------------------------------------------------------------------------------- /examples/poasm/fda2/fda2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/fda2/fda2.exe -------------------------------------------------------------------------------- /examples/poasm/fda2/fda2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/fda2/fda2.obj -------------------------------------------------------------------------------- /examples/poasm/poasm1k/poasm1k.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/poasm1k/poasm1k.asm -------------------------------------------------------------------------------- /examples/poasm/poasm1k/poasm1k.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/poasm1k/poasm1k.exe -------------------------------------------------------------------------------- /examples/poasm/riched/Richedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/riched/Richedit.exe -------------------------------------------------------------------------------- /examples/poasm/riched/file2000.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/riched/file2000.bmp -------------------------------------------------------------------------------- /examples/poasm/riched/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/riched/mainicon.ico -------------------------------------------------------------------------------- /examples/poasm/riched/richedit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/riched/richedit.asm -------------------------------------------------------------------------------- /examples/poasm/runcpl/runcpl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/runcpl/runcpl.asm -------------------------------------------------------------------------------- /examples/poasm/runcpl/runcpl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/runcpl/runcpl.exe -------------------------------------------------------------------------------- /examples/poasm/winenum/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/winenum/mainicon.ico -------------------------------------------------------------------------------- /examples/poasm/winenum/rsrc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/winenum/rsrc.res -------------------------------------------------------------------------------- /examples/poasm/winenum/winenum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/winenum/winenum.asm -------------------------------------------------------------------------------- /examples/poasm/winenum/winenum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/poasm/winenum/winenum.exe -------------------------------------------------------------------------------- /examples/threads/multidl/multidl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/threads/multidl/multidl.asm -------------------------------------------------------------------------------- /examples/threads/multidl/multidl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/examples/threads/multidl/multidl.exe -------------------------------------------------------------------------------- /fda.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/fda.exe -------------------------------------------------------------------------------- /fda32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/fda32.exe -------------------------------------------------------------------------------- /fpulib/fpu.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/fpulib/fpu.lib -------------------------------------------------------------------------------- /getcolor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/getcolor.exe -------------------------------------------------------------------------------- /help/DateTime.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/DateTime.chm -------------------------------------------------------------------------------- /help/VKDebug.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/VKDebug.chm -------------------------------------------------------------------------------- /help/asmintro.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/asmintro.chm -------------------------------------------------------------------------------- /help/fpuhelp.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/fpuhelp.chm -------------------------------------------------------------------------------- /help/hlhelp.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/hlhelp.chm -------------------------------------------------------------------------------- /help/imdialog.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/imdialog.chm -------------------------------------------------------------------------------- /help/masm32.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/masm32.chm -------------------------------------------------------------------------------- /help/masmlib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/masmlib.chm -------------------------------------------------------------------------------- /help/opcodes.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/opcodes.chm -------------------------------------------------------------------------------- /help/qeditor.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/help/qeditor.chm -------------------------------------------------------------------------------- /include/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/RESOURCE.H -------------------------------------------------------------------------------- /include/dialogs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/dialogs.inc -------------------------------------------------------------------------------- /include/inc2l.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/inc2l.exe -------------------------------------------------------------------------------- /include/masm32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/masm32.inc -------------------------------------------------------------------------------- /include/masm32rt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/masm32rt.inc -------------------------------------------------------------------------------- /include/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/touch.exe -------------------------------------------------------------------------------- /include/windows.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/windows.inc -------------------------------------------------------------------------------- /include/winextra.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/include/winextra.inc -------------------------------------------------------------------------------- /jtmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/jtmake.exe -------------------------------------------------------------------------------- /libbat.qsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/libbat.qsc -------------------------------------------------------------------------------- /licence/ddk_eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/licence/ddk_eula.txt -------------------------------------------------------------------------------- /licence/sdk_eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/licence/sdk_eula.txt -------------------------------------------------------------------------------- /m32lib/NameFromPathW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/NameFromPathW.asm -------------------------------------------------------------------------------- /m32lib/PathOnlyW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/PathOnlyW.asm -------------------------------------------------------------------------------- /m32lib/StdInW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/StdInW.asm -------------------------------------------------------------------------------- /m32lib/a2dw_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/a2dw_ex.asm -------------------------------------------------------------------------------- /m32lib/a2wc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/a2wc.asm -------------------------------------------------------------------------------- /m32lib/about.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/about.asm -------------------------------------------------------------------------------- /m32lib/acisort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/acisort.asm -------------------------------------------------------------------------------- /m32lib/aissort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/aissort.asm -------------------------------------------------------------------------------- /m32lib/appath.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/appath.asm -------------------------------------------------------------------------------- /m32lib/appathw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/appathw.asm -------------------------------------------------------------------------------- /m32lib/argbynum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/argbynum.asm -------------------------------------------------------------------------------- /m32lib/arr2file.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arr2file.asm -------------------------------------------------------------------------------- /m32lib/arr2mem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arr2mem.asm -------------------------------------------------------------------------------- /m32lib/arr2text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arr2text.asm -------------------------------------------------------------------------------- /m32lib/arradd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arradd.asm -------------------------------------------------------------------------------- /m32lib/arralloc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arralloc.asm -------------------------------------------------------------------------------- /m32lib/arrbin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrbin.asm -------------------------------------------------------------------------------- /m32lib/arrcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrcnt.asm -------------------------------------------------------------------------------- /m32lib/arrdat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrdat.asm -------------------------------------------------------------------------------- /m32lib/arrealloc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrealloc.asm -------------------------------------------------------------------------------- /m32lib/arrealoc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrealoc.asm -------------------------------------------------------------------------------- /m32lib/arrextnd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrextnd.asm -------------------------------------------------------------------------------- /m32lib/arrfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrfile.asm -------------------------------------------------------------------------------- /m32lib/arrfree.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrfree.asm -------------------------------------------------------------------------------- /m32lib/arrget.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrget.asm -------------------------------------------------------------------------------- /m32lib/arrlen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrlen.asm -------------------------------------------------------------------------------- /m32lib/arrmul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrmul.asm -------------------------------------------------------------------------------- /m32lib/arrset.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrset.asm -------------------------------------------------------------------------------- /m32lib/arrsub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrsub.asm -------------------------------------------------------------------------------- /m32lib/arrtotal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrtotal.asm -------------------------------------------------------------------------------- /m32lib/arrtrunc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrtrunc.asm -------------------------------------------------------------------------------- /m32lib/arrtxt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrtxt.asm -------------------------------------------------------------------------------- /m32lib/arrxtnd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/arrxtnd.asm -------------------------------------------------------------------------------- /m32lib/ascdump.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ascdump.asm -------------------------------------------------------------------------------- /m32lib/asqsort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/asqsort.asm -------------------------------------------------------------------------------- /m32lib/assort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/assort.asm -------------------------------------------------------------------------------- /m32lib/atol.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/atol.asm -------------------------------------------------------------------------------- /m32lib/b2b_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/b2b_ex.asm -------------------------------------------------------------------------------- /m32lib/bcount.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bcount.asm -------------------------------------------------------------------------------- /m32lib/bin2b_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bin2b_ex.asm -------------------------------------------------------------------------------- /m32lib/bin2hex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bin2hex.asm -------------------------------------------------------------------------------- /m32lib/bintbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bintbl.asm -------------------------------------------------------------------------------- /m32lib/bitmapfromfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bitmapfromfile.asm -------------------------------------------------------------------------------- /m32lib/bitmapfrommemory.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bitmapfrommemory.asm -------------------------------------------------------------------------------- /m32lib/bitmapfrompicture.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bitmapfrompicture.asm -------------------------------------------------------------------------------- /m32lib/bitmapfromresource.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bitmapfromresource.asm -------------------------------------------------------------------------------- /m32lib/bldarray.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bldarray.asm -------------------------------------------------------------------------------- /m32lib/bsearch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bsearch.asm -------------------------------------------------------------------------------- /m32lib/bubsrta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bubsrta.asm -------------------------------------------------------------------------------- /m32lib/bubsrtd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/bubsrtd.asm -------------------------------------------------------------------------------- /m32lib/ccsorta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ccsorta.asm -------------------------------------------------------------------------------- /m32lib/ccsortd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ccsortd.asm -------------------------------------------------------------------------------- /m32lib/chtyptbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/chtyptbl.asm -------------------------------------------------------------------------------- /m32lib/closemmf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/closemmf.asm -------------------------------------------------------------------------------- /m32lib/cmpi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/cmpi.asm -------------------------------------------------------------------------------- /m32lib/cmpmem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/cmpmem.asm -------------------------------------------------------------------------------- /m32lib/creatmmf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/creatmmf.asm -------------------------------------------------------------------------------- /m32lib/cstsorta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/cstsorta.asm -------------------------------------------------------------------------------- /m32lib/cstsortd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/cstsortd.asm -------------------------------------------------------------------------------- /m32lib/dcisort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dcisort.asm -------------------------------------------------------------------------------- /m32lib/decommnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/decommnt.asm -------------------------------------------------------------------------------- /m32lib/dectbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dectbl.asm -------------------------------------------------------------------------------- /m32lib/dissort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dissort.asm -------------------------------------------------------------------------------- /m32lib/dsqsort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dsqsort.asm -------------------------------------------------------------------------------- /m32lib/dssort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dssort.asm -------------------------------------------------------------------------------- /m32lib/dw2b_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dw2b_ex.asm -------------------------------------------------------------------------------- /m32lib/dw2h_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dw2h_ex.asm -------------------------------------------------------------------------------- /m32lib/dwtoa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/dwtoa.asm -------------------------------------------------------------------------------- /m32lib/existW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/existW.asm -------------------------------------------------------------------------------- /m32lib/filesizeW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/filesizeW.asm -------------------------------------------------------------------------------- /m32lib/getcbtxt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getcbtxt.asm -------------------------------------------------------------------------------- /m32lib/getcl_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getcl_ex.asm -------------------------------------------------------------------------------- /m32lib/getfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getfile.asm -------------------------------------------------------------------------------- /m32lib/getip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getip.asm -------------------------------------------------------------------------------- /m32lib/getlcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getlcnt.asm -------------------------------------------------------------------------------- /m32lib/getml.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getml.asm -------------------------------------------------------------------------------- /m32lib/getpcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getpcnt.asm -------------------------------------------------------------------------------- /m32lib/getpth.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/getpth.asm -------------------------------------------------------------------------------- /m32lib/gettext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/gettext.asm -------------------------------------------------------------------------------- /m32lib/h2btbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/h2btbl.asm -------------------------------------------------------------------------------- /m32lib/hex2bin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/hex2bin.asm -------------------------------------------------------------------------------- /m32lib/hexflip.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/hexflip.asm -------------------------------------------------------------------------------- /m32lib/hextbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/hextbl.asm -------------------------------------------------------------------------------- /m32lib/ip2str.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ip2str.asm -------------------------------------------------------------------------------- /m32lib/isalpha.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/isalpha.asm -------------------------------------------------------------------------------- /m32lib/isanum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/isanum.asm -------------------------------------------------------------------------------- /m32lib/islower.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/islower.asm -------------------------------------------------------------------------------- /m32lib/isnumber.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/isnumber.asm -------------------------------------------------------------------------------- /m32lib/isupper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/isupper.asm -------------------------------------------------------------------------------- /m32lib/lfcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/lfcnt.asm -------------------------------------------------------------------------------- /m32lib/loadlist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/loadlist.asm -------------------------------------------------------------------------------- /m32lib/lstdrivs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/lstdrivs.asm -------------------------------------------------------------------------------- /m32lib/ltoa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ltoa.asm -------------------------------------------------------------------------------- /m32lib/ltok.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ltok.asm -------------------------------------------------------------------------------- /m32lib/masm32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/masm32.inc -------------------------------------------------------------------------------- /m32lib/masm32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/masm32.lib -------------------------------------------------------------------------------- /m32lib/namefpth.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/namefpth.asm -------------------------------------------------------------------------------- /m32lib/nrand.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/nrand.asm -------------------------------------------------------------------------------- /m32lib/opendlg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/opendlg.asm -------------------------------------------------------------------------------- /m32lib/parsline.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/parsline.asm -------------------------------------------------------------------------------- /m32lib/partial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/partial.asm -------------------------------------------------------------------------------- /m32lib/qstsorta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/qstsorta.asm -------------------------------------------------------------------------------- /m32lib/qstsortd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/qstsortd.asm -------------------------------------------------------------------------------- /m32lib/readdisk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/readdisk.asm -------------------------------------------------------------------------------- /m32lib/readdiskW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/readdiskW.asm -------------------------------------------------------------------------------- /m32lib/readline.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/readline.asm -------------------------------------------------------------------------------- /m32lib/retfont.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/retfont.asm -------------------------------------------------------------------------------- /m32lib/retkey.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/retkey.asm -------------------------------------------------------------------------------- /m32lib/rsync_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/rsync_ex.asm -------------------------------------------------------------------------------- /m32lib/runsync.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/runsync.asm -------------------------------------------------------------------------------- /m32lib/savedlg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/savedlg.asm -------------------------------------------------------------------------------- /m32lib/setcbtxt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/setcbtxt.asm -------------------------------------------------------------------------------- /m32lib/shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/shell.asm -------------------------------------------------------------------------------- /m32lib/shell_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/shell_ex.asm -------------------------------------------------------------------------------- /m32lib/ssorta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ssorta.asm -------------------------------------------------------------------------------- /m32lib/ssortd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ssortd.asm -------------------------------------------------------------------------------- /m32lib/stderr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/stderr.asm -------------------------------------------------------------------------------- /m32lib/stderrw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/stderrw.asm -------------------------------------------------------------------------------- /m32lib/stdin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/stdin.asm -------------------------------------------------------------------------------- /m32lib/stdoutw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/stdoutw.asm -------------------------------------------------------------------------------- /m32lib/striplf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/striplf.asm -------------------------------------------------------------------------------- /m32lib/strlen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/strlen.asm -------------------------------------------------------------------------------- /m32lib/szappend.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szappend.asm -------------------------------------------------------------------------------- /m32lib/szcatstr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szcatstr.asm -------------------------------------------------------------------------------- /m32lib/szcmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szcmp.asm -------------------------------------------------------------------------------- /m32lib/szcmpi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szcmpi.asm -------------------------------------------------------------------------------- /m32lib/szcopy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szcopy.asm -------------------------------------------------------------------------------- /m32lib/szleft.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szleft.asm -------------------------------------------------------------------------------- /m32lib/szlen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szlen.asm -------------------------------------------------------------------------------- /m32lib/szlower.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szlower.asm -------------------------------------------------------------------------------- /m32lib/szltrim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szltrim.asm -------------------------------------------------------------------------------- /m32lib/szmid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szmid.asm -------------------------------------------------------------------------------- /m32lib/szmonosp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szmonosp.asm -------------------------------------------------------------------------------- /m32lib/szmulcat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szmulcat.asm -------------------------------------------------------------------------------- /m32lib/szremove.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szremove.asm -------------------------------------------------------------------------------- /m32lib/szreplac.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szreplac.asm -------------------------------------------------------------------------------- /m32lib/szrev.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szrev.asm -------------------------------------------------------------------------------- /m32lib/szright.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szright.asm -------------------------------------------------------------------------------- /m32lib/szrtrim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szrtrim.asm -------------------------------------------------------------------------------- /m32lib/sztrim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/sztrim.asm -------------------------------------------------------------------------------- /m32lib/szupper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szupper.asm -------------------------------------------------------------------------------- /m32lib/szwcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/szwcnt.asm -------------------------------------------------------------------------------- /m32lib/testreg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/testreg.asm -------------------------------------------------------------------------------- /m32lib/tstline.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/tstline.asm -------------------------------------------------------------------------------- /m32lib/ucArgByNum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucArgByNum.asm -------------------------------------------------------------------------------- /m32lib/ucCmdTail.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucCmdTail.asm -------------------------------------------------------------------------------- /m32lib/ucGetCL.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucGetCL.asm -------------------------------------------------------------------------------- /m32lib/ucMonoSpace.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucMonoSpace.asm -------------------------------------------------------------------------------- /m32lib/ucappend.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucappend.asm -------------------------------------------------------------------------------- /m32lib/uccat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/uccat.asm -------------------------------------------------------------------------------- /m32lib/uccmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/uccmp.asm -------------------------------------------------------------------------------- /m32lib/uccopy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/uccopy.asm -------------------------------------------------------------------------------- /m32lib/ucfind.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucfind.asm -------------------------------------------------------------------------------- /m32lib/ucgetline.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucgetline.asm -------------------------------------------------------------------------------- /m32lib/ucleft.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucleft.asm -------------------------------------------------------------------------------- /m32lib/uclen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/uclen.asm -------------------------------------------------------------------------------- /m32lib/uclower.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/uclower.asm -------------------------------------------------------------------------------- /m32lib/ucltrim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucltrim.asm -------------------------------------------------------------------------------- /m32lib/ucmid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucmid.asm -------------------------------------------------------------------------------- /m32lib/ucmulcat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucmulcat.asm -------------------------------------------------------------------------------- /m32lib/ucremove.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucremove.asm -------------------------------------------------------------------------------- /m32lib/ucrep.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucrep.asm -------------------------------------------------------------------------------- /m32lib/ucrev.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucrev.asm -------------------------------------------------------------------------------- /m32lib/ucright.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucright.asm -------------------------------------------------------------------------------- /m32lib/ucrtrim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucrtrim.asm -------------------------------------------------------------------------------- /m32lib/ucupper.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucupper.asm -------------------------------------------------------------------------------- /m32lib/ucwcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/ucwcnt.asm -------------------------------------------------------------------------------- /m32lib/uopendlg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/uopendlg.asm -------------------------------------------------------------------------------- /m32lib/usavedlg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/usavedlg.asm -------------------------------------------------------------------------------- /m32lib/w2b_ex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/w2b_ex.asm -------------------------------------------------------------------------------- /m32lib/wait_key.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/wait_key.asm -------------------------------------------------------------------------------- /m32lib/wordrep.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/wordrep.asm -------------------------------------------------------------------------------- /m32lib/writdisk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/writdisk.asm -------------------------------------------------------------------------------- /m32lib/writdiskW.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/writdiskW.asm -------------------------------------------------------------------------------- /m32lib/writline.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/writline.asm -------------------------------------------------------------------------------- /m32lib/wshell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/wshell.asm -------------------------------------------------------------------------------- /m32lib/wtok.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/m32lib/wtok.asm -------------------------------------------------------------------------------- /macros/lst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/macros/lst.exe -------------------------------------------------------------------------------- /macros/macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/macros/macros.asm -------------------------------------------------------------------------------- /macros/pomacros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/macros/pomacros.asm -------------------------------------------------------------------------------- /makecimp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/makecimp.exe -------------------------------------------------------------------------------- /maketbl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/maketbl.exe -------------------------------------------------------------------------------- /mangle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/mangle.exe -------------------------------------------------------------------------------- /menuedit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/menuedit.dll -------------------------------------------------------------------------------- /menus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/menus.ini -------------------------------------------------------------------------------- /mnutoasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/mnutoasm.exe -------------------------------------------------------------------------------- /multitool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/multitool.exe -------------------------------------------------------------------------------- /plugins/ablockc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/ablockc.dll -------------------------------------------------------------------------------- /plugins/bin2hex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/bin2hex.dll -------------------------------------------------------------------------------- /plugins/bin2qse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/bin2qse.dll -------------------------------------------------------------------------------- /plugins/blockp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/blockp.dll -------------------------------------------------------------------------------- /plugins/cblockc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/cblockc.dll -------------------------------------------------------------------------------- /plugins/dumpcu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/dumpcu.dll -------------------------------------------------------------------------------- /plugins/fdpe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/fdpe.dll -------------------------------------------------------------------------------- /plugins/hex2bin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/hex2bin.dll -------------------------------------------------------------------------------- /plugins/indentb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/indentb.dll -------------------------------------------------------------------------------- /plugins/regswap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/regswap.dll -------------------------------------------------------------------------------- /plugins/rtrim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/rtrim.dll -------------------------------------------------------------------------------- /plugins/txt2qse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/plugins/txt2qse.dll -------------------------------------------------------------------------------- /procmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procmap.exe -------------------------------------------------------------------------------- /procs/append.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/append.asm -------------------------------------------------------------------------------- /procs/fname.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/fname.asm -------------------------------------------------------------------------------- /procs/getargs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/getargs.asm -------------------------------------------------------------------------------- /procs/getfldat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/getfldat.asm -------------------------------------------------------------------------------- /procs/hashtble.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/hashtble.asm -------------------------------------------------------------------------------- /procs/loadfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/loadfile.asm -------------------------------------------------------------------------------- /procs/loadlist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/loadlist.asm -------------------------------------------------------------------------------- /procs/msgboxi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/msgboxi.asm -------------------------------------------------------------------------------- /procs/query.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/query.asm -------------------------------------------------------------------------------- /procs/scanwrds.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/scanwrds.asm -------------------------------------------------------------------------------- /procs/stripasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/stripasm.asm -------------------------------------------------------------------------------- /procs/stripcc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/stripcc.asm -------------------------------------------------------------------------------- /procs/topxy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/topxy.asm -------------------------------------------------------------------------------- /procs/wrt2disk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/procs/wrt2disk.asm -------------------------------------------------------------------------------- /prostart.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/prostart.exe -------------------------------------------------------------------------------- /prostart.ini: -------------------------------------------------------------------------------- 1 | \MASM32\BIN\Ml.exe 2 | \MASM32\BIN\Link.exe 3 | \MASM32\BIN\Rc.exe 4 | \MASM32\BIN\Cvtres.exe 5 | \masm32\include\ 6 | \masm32\lib\ 7 | -------------------------------------------------------------------------------- /pths.ini: -------------------------------------------------------------------------------- 1 | \masm32\bin\ML.EXE 2 | \masm32\bin\LINK.EXE 3 | \masm32\bin\RC.EXE 4 | \masm32\bin\CVTRES.EXE 5 | \masm32\include\ 6 | \masm32\lib\ 7 | -------------------------------------------------------------------------------- /qeditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/qeditor.exe -------------------------------------------------------------------------------- /qeint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/qeint.bin -------------------------------------------------------------------------------- /qetb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/qetb.exe -------------------------------------------------------------------------------- /qetxt.bin: -------------------------------------------------------------------------------- 1 | fixedsys 2 | 12 3 | 500 4 | Tahoma 5 | 13 6 | 700 7 | -------------------------------------------------------------------------------- /qsc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/qsc.dll -------------------------------------------------------------------------------- /script/console.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/console.qse -------------------------------------------------------------------------------- /script/dll.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/dll.qse -------------------------------------------------------------------------------- /script/extra/apimb.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/apimb.qse -------------------------------------------------------------------------------- /script/extra/contemp.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/contemp.qse -------------------------------------------------------------------------------- /script/extra/dup.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/dup.qse -------------------------------------------------------------------------------- /script/extra/getfolder.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/getfolder.qse -------------------------------------------------------------------------------- /script/extra/loadfile.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/loadfile.qse -------------------------------------------------------------------------------- /script/extra/msgbox.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/msgbox.qse -------------------------------------------------------------------------------- /script/extra/ozymandias.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/ozymandias.qse -------------------------------------------------------------------------------- /script/extra/structem.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/structem.qse -------------------------------------------------------------------------------- /script/extra/tute1.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/tute1.qse -------------------------------------------------------------------------------- /script/extra/txt2qse.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/extra/txt2qse.qse -------------------------------------------------------------------------------- /script/libmod.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/libmod.qse -------------------------------------------------------------------------------- /script/makedlg.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/makedlg.qse -------------------------------------------------------------------------------- /script/makewin.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/makewin.qse -------------------------------------------------------------------------------- /script/plugin.qse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/script/plugin.qse -------------------------------------------------------------------------------- /se.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/se.dll -------------------------------------------------------------------------------- /shellex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/shellex.exe -------------------------------------------------------------------------------- /subclass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/subclass.exe -------------------------------------------------------------------------------- /testbed.qsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/testbed.qsc -------------------------------------------------------------------------------- /testinst/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/testinst/rsrc.rc -------------------------------------------------------------------------------- /testinst/testinst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/testinst/testinst.asm -------------------------------------------------------------------------------- /testinst/testinst.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/testinst/testinst.obj -------------------------------------------------------------------------------- /text/blankdlg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/blankdlg.txt -------------------------------------------------------------------------------- /text/comment0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment0.txt -------------------------------------------------------------------------------- /text/comment1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment1.txt -------------------------------------------------------------------------------- /text/comment2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment2.txt -------------------------------------------------------------------------------- /text/comment3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment3.txt -------------------------------------------------------------------------------- /text/comment4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment4.txt -------------------------------------------------------------------------------- /text/comment5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment5.txt -------------------------------------------------------------------------------- /text/comment6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment6.txt -------------------------------------------------------------------------------- /text/comment7.txt: -------------------------------------------------------------------------------- 1 | ; ------------------------------------------------------------------------- 2 | -------------------------------------------------------------------------------- /text/comment8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/comment8.txt -------------------------------------------------------------------------------- /text/contemp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/contemp.txt -------------------------------------------------------------------------------- /text/dbmsgbox.txt: -------------------------------------------------------------------------------- 1 | pushad 2 | fn MessageBox,0,str$(esi),"Test",MB_OK 3 | popad 4 | -------------------------------------------------------------------------------- /text/dbprint.txt: -------------------------------------------------------------------------------- 1 | pushad 2 | pushfd 3 | print str$(eax)," text",13,10 4 | popfd 5 | popad 6 | -------------------------------------------------------------------------------- /text/epilog.txt: -------------------------------------------------------------------------------- 1 | OPTION PROLOGUE:PrologueDef 2 | OPTION EPILOGUE:EpilogueDef 3 | -------------------------------------------------------------------------------- /text/lasterr.txt: -------------------------------------------------------------------------------- 1 | fn MessageBox,0,LastError$(),"Last Error Text",MB_OK 2 | -------------------------------------------------------------------------------- /text/msgbox.txt: -------------------------------------------------------------------------------- 1 | fn MessageBox,0,str$(eax),"Title",MB_OK 2 | -------------------------------------------------------------------------------- /text/nops3.txt: -------------------------------------------------------------------------------- 1 | nop 2 | nop 3 | nop 4 | -------------------------------------------------------------------------------- /text/pop3.txt: -------------------------------------------------------------------------------- 1 | pop edi 2 | pop esi 3 | pop ebx 4 | -------------------------------------------------------------------------------- /text/prolog.txt: -------------------------------------------------------------------------------- 1 | OPTION PROLOGUE:NONE 2 | OPTION EPILOGUE:NONE 3 | -------------------------------------------------------------------------------- /text/push3.txt: -------------------------------------------------------------------------------- 1 | push ebx 2 | push esi 3 | push edi 4 | -------------------------------------------------------------------------------- /text/rcversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/rcversion.txt -------------------------------------------------------------------------------- /text/samplerc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/text/samplerc.txt -------------------------------------------------------------------------------- /text/unicode.txt: -------------------------------------------------------------------------------- 1 | __UNICODE__ equ 1 -------------------------------------------------------------------------------- /tools/bin2db/bin2db.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/bin2db.asm -------------------------------------------------------------------------------- /tools/bin2db/bin2db.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/bin2db.exe -------------------------------------------------------------------------------- /tools/bin2db/bin2db.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/bin2db.ico -------------------------------------------------------------------------------- /tools/bin2db/bin2db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/bin2db.inc -------------------------------------------------------------------------------- /tools/bin2db/bluegrad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/bluegrad.bmp -------------------------------------------------------------------------------- /tools/bin2db/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/misc.asm -------------------------------------------------------------------------------- /tools/bin2db/richedit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/richedit.asm -------------------------------------------------------------------------------- /tools/bin2db/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/rsrc.rc -------------------------------------------------------------------------------- /tools/bin2db/tb256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/tb256.bmp -------------------------------------------------------------------------------- /tools/bin2db/tbrgba.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/bin2db/tbrgba.bmp -------------------------------------------------------------------------------- /tools/cpicker/cpicker.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/cpicker/cpicker.asm -------------------------------------------------------------------------------- /tools/cpicker/cpicker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/cpicker/cpicker.exe -------------------------------------------------------------------------------- /tools/cpicker/cpicker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/cpicker/cpicker.ico -------------------------------------------------------------------------------- /tools/cpicker/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/cpicker/rsrc.rc -------------------------------------------------------------------------------- /tools/def2inc/def2inc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/def2inc/def2inc.exe -------------------------------------------------------------------------------- /tools/fda/fda.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda/fda.asm -------------------------------------------------------------------------------- /tools/fda/fda.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda/fda.exe -------------------------------------------------------------------------------- /tools/fda32/bluegrad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/bluegrad.bmp -------------------------------------------------------------------------------- /tools/fda32/fda32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/fda32.asm -------------------------------------------------------------------------------- /tools/fda32/fda32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/fda32.exe -------------------------------------------------------------------------------- /tools/fda32/fda32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/fda32.ico -------------------------------------------------------------------------------- /tools/fda32/fda32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/fda32.inc -------------------------------------------------------------------------------- /tools/fda32/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/main.rc -------------------------------------------------------------------------------- /tools/fda32/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/misc.asm -------------------------------------------------------------------------------- /tools/fda32/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/rsrc.rc -------------------------------------------------------------------------------- /tools/fda32/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/fda32/toolbar.bmp -------------------------------------------------------------------------------- /tools/getcolor/getcolor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/getcolor/getcolor.asm -------------------------------------------------------------------------------- /tools/getcolor/getcolor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/getcolor/getcolor.exe -------------------------------------------------------------------------------- /tools/getcolor/getcolor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/getcolor/getcolor.ico -------------------------------------------------------------------------------- /tools/getcolor/getcolor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/getcolor/getcolor.inc -------------------------------------------------------------------------------- /tools/getcolor/picker.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/getcolor/picker.cur -------------------------------------------------------------------------------- /tools/imp2inc/imp2inc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/imp2inc/imp2inc.exe -------------------------------------------------------------------------------- /tools/inc2l/inc2l.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/inc2l/inc2l.exe -------------------------------------------------------------------------------- /tools/l2def/l2def.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/l2def/l2def.exe -------------------------------------------------------------------------------- /tools/l2extia/l2extia.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/l2extia/l2extia.exe -------------------------------------------------------------------------------- /tools/l2inc/l2inc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/l2inc/l2inc.exe -------------------------------------------------------------------------------- /tools/lnkstubs/dumpbin/dumpbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/lnkstubs/dumpbin/dumpbin.exe -------------------------------------------------------------------------------- /tools/lnkstubs/editbin/editbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/lnkstubs/editbin/editbin.exe -------------------------------------------------------------------------------- /tools/lnkstubs/lib/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/lnkstubs/lib/lib.exe -------------------------------------------------------------------------------- /tools/makecimp/makecimp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/makecimp/makecimp.asm -------------------------------------------------------------------------------- /tools/makecimp/makecimp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/makecimp/makecimp.exe -------------------------------------------------------------------------------- /tools/makecimp/vcrtdemo/vcrtdemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/makecimp/vcrtdemo/vcrtdemo.exe -------------------------------------------------------------------------------- /tools/maketbl/maketbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/maketbl/maketbl.asm -------------------------------------------------------------------------------- /tools/maketbl/maketbl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/maketbl/maketbl.exe -------------------------------------------------------------------------------- /tools/maketbl/maketbl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/maketbl/maketbl.inc -------------------------------------------------------------------------------- /tools/maketbl/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/maketbl/rsrc.rc -------------------------------------------------------------------------------- /tools/pproc/pproc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/pproc/pproc.exe -------------------------------------------------------------------------------- /tools/pproc/readme.txt: -------------------------------------------------------------------------------- 1 | pproc.exe 2 | --------- 3 | 4 | This tool creates an array of prime numbers in reverse order for fast hash 5 | table bucket calculation. -------------------------------------------------------------------------------- /tools/tview/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/tview/rsrc.rc -------------------------------------------------------------------------------- /tools/tview/tview.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/tview/tview.asm -------------------------------------------------------------------------------- /tools/tview/tview.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tools/tview/tview.exe -------------------------------------------------------------------------------- /topgun.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/topgun.chm -------------------------------------------------------------------------------- /topgun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/topgun.exe -------------------------------------------------------------------------------- /tproc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tproc.exe -------------------------------------------------------------------------------- /tproc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tproc.txt -------------------------------------------------------------------------------- /tutorial/console/demo1/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo1/hello.asm -------------------------------------------------------------------------------- /tutorial/console/demo1/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo1/hello.exe -------------------------------------------------------------------------------- /tutorial/console/demo2/proc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo2/proc.asm -------------------------------------------------------------------------------- /tutorial/console/demo2/proc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo2/proc.exe -------------------------------------------------------------------------------- /tutorial/console/demo3/data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo3/data.asm -------------------------------------------------------------------------------- /tutorial/console/demo3/data.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo3/data.exe -------------------------------------------------------------------------------- /tutorial/console/demo4/locals.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo4/locals.asm -------------------------------------------------------------------------------- /tutorial/console/demo4/locals.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo4/locals.exe -------------------------------------------------------------------------------- /tutorial/console/demo5/numbers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo5/numbers.asm -------------------------------------------------------------------------------- /tutorial/console/demo5/numbers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo5/numbers.exe -------------------------------------------------------------------------------- /tutorial/console/demo6/address.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo6/address.asm -------------------------------------------------------------------------------- /tutorial/console/demo6/address.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo6/address.exe -------------------------------------------------------------------------------- /tutorial/console/demo7/complex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo7/complex.asm -------------------------------------------------------------------------------- /tutorial/console/demo7/complex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/console/demo7/complex.exe -------------------------------------------------------------------------------- /tutorial/dlltute/dll/dlltute.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/dll/dlltute.asm -------------------------------------------------------------------------------- /tutorial/dlltute/dll/dlltute.def: -------------------------------------------------------------------------------- 1 | LIBRARY dlltute 2 | EXPORTS MessageBoxSTD 3 | EXPORTS MessageBoxCC 4 | EXPORTS MessageBoxFC -------------------------------------------------------------------------------- /tutorial/dlltute/dll/dlltute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/dll/dlltute.dll -------------------------------------------------------------------------------- /tutorial/dlltute/dll/dlltute.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/dll/dlltute.exp -------------------------------------------------------------------------------- /tutorial/dlltute/dll/dlltute.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/dll/dlltute.lib -------------------------------------------------------------------------------- /tutorial/dlltute/dll/dlltute.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/dll/dlltute.obj -------------------------------------------------------------------------------- /tutorial/dlltute/masmdll.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/masmdll.htm -------------------------------------------------------------------------------- /tutorial/dlltute/testapp/dlltute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/testapp/dlltute.dll -------------------------------------------------------------------------------- /tutorial/dlltute/testapp/dlltute.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/testapp/dlltute.lib -------------------------------------------------------------------------------- /tutorial/dlltute/testapp/rsrc.rc: -------------------------------------------------------------------------------- 1 | 1 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "testapp.ico" 2 | -------------------------------------------------------------------------------- /tutorial/dlltute/testapp/testapp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/testapp/testapp.asm -------------------------------------------------------------------------------- /tutorial/dlltute/testapp/testapp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/testapp/testapp.exe -------------------------------------------------------------------------------- /tutorial/dlltute/testapp/testapp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/dlltute/testapp/testapp.ico -------------------------------------------------------------------------------- /tutorial/fputute/fpuchap11.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpuchap11.htm -------------------------------------------------------------------------------- /tutorial/fputute/fpuchap12.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpuchap12.htm -------------------------------------------------------------------------------- /tutorial/fputute/fpuchap2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpuchap2.htm -------------------------------------------------------------------------------- /tutorial/fputute/fpuchap4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpuchap4.htm -------------------------------------------------------------------------------- /tutorial/fputute/fpuchap8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpuchap8.htm -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/bluewave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/bluewave.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/cwfields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/cwfields.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/equ1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/equ1.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/fpuregs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/fpuregs.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/fpustate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/fpustate.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/packed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/packed.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/real10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/real10.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/real4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/real4.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/real8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/real8.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/swfields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/swfields.gif -------------------------------------------------------------------------------- /tutorial/fputute/fpufigs/tfields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/fputute/fpufigs/tfields.gif -------------------------------------------------------------------------------- /tutorial/petute/petute.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tutorial/petute/petute.chm -------------------------------------------------------------------------------- /tview.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/tview.exe -------------------------------------------------------------------------------- /ueint.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/ueint.bin -------------------------------------------------------------------------------- /uniedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/uniedit.exe -------------------------------------------------------------------------------- /vkdebug/dbgwin/dbgwin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/dbgwin.exe -------------------------------------------------------------------------------- /vkdebug/dbgwin/file.inc: -------------------------------------------------------------------------------- 1 | SaveAsFile proto :dword, :dword 2 | ReadFromFile proto :dword -------------------------------------------------------------------------------- /vkdebug/dbgwin/icons/delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/icons/delete.bmp -------------------------------------------------------------------------------- /vkdebug/dbgwin/icons/eye.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/icons/eye.ico -------------------------------------------------------------------------------- /vkdebug/dbgwin/icons/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/icons/help.bmp -------------------------------------------------------------------------------- /vkdebug/dbgwin/icons/open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/icons/open.bmp -------------------------------------------------------------------------------- /vkdebug/dbgwin/icons/pin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/icons/pin.bmp -------------------------------------------------------------------------------- /vkdebug/dbgwin/icons/save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/icons/save.bmp -------------------------------------------------------------------------------- /vkdebug/dbgwin/rsrc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbgwin/rsrc.res -------------------------------------------------------------------------------- /vkdebug/dbproc/debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/dbproc/debug.lib -------------------------------------------------------------------------------- /vkdebug/example/demo1/dbdemo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/example/demo1/dbdemo.obj -------------------------------------------------------------------------------- /vkdebug/example/dumpfpu/demo2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/example/dumpfpu/demo2.exe -------------------------------------------------------------------------------- /vkdebug/example/dumpfpu/make.bat: -------------------------------------------------------------------------------- 1 | \masm32\bin\ml /c /coff demo2.asm > out.txt 2 | \masm32\bin\link /SUBSYSTEM:WINDOWS demo2.obj >> out.txt -------------------------------------------------------------------------------- /vkdebug/example/dumpmem/demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/example/dumpmem/demo.exe -------------------------------------------------------------------------------- /vkdebug/example/dumpmem/make.bat: -------------------------------------------------------------------------------- 1 | \masm32\bin\ml /c /coff demo.asm > out.txt 2 | \masm32\bin\link /SUBSYSTEM:WINDOWS demo.obj >> out.txt -------------------------------------------------------------------------------- /vkdebug/example/spy/make.bat: -------------------------------------------------------------------------------- 1 | \masm32\bin\ml.exe /c /coff spy.asm > out.txt 2 | \masm32\bin\link.exe /SUBSYSTEM:WINDOWS spy.obj >> out.txt 3 | -------------------------------------------------------------------------------- /vkdebug/example/spy/spy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/example/spy/spy.exe -------------------------------------------------------------------------------- /vkdebug/extra/dbghelp/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/extra/dbghelp/dbghelp.dll -------------------------------------------------------------------------------- /vkdebug/setup.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/vkdebug/setup.pif -------------------------------------------------------------------------------- /wcsch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonado/MASM32-SDK/2bf70b217d0b12823a223503736d5da5e1dbd010/wcsch.exe --------------------------------------------------------------------------------