├── .gitattributes ├── .gitignore ├── Colors ├── Amakrits.json ├── Amethyst Kamri.json ├── Aqua Graphite.json ├── Aqua Light Slate.json ├── Auric.json ├── Blue.json ├── Carbon.json ├── Charcoal Dark Slate.json ├── Cobalt XEMedia.json ├── Cyan Dusk.json ├── Cyan Night.json ├── Default.json ├── Emerald Light Slate.json ├── Golden Graphite.json ├── Iceberg Classico.json ├── Lavender Classico.json ├── Light.json ├── Luna.json ├── Metropolis UI Black.json ├── Metropolis UI Blue.json ├── Metropolis UI Dark.json ├── Metropolis UI Green.json ├── Obsidian.json ├── Ruby Graphite.json ├── Sapphire Kamri.json ├── Silver.json ├── Slate Classico.json ├── Smokey Quartz Kamri.json ├── Turquoise Gray.json └── Windows.json ├── Domain ├── uBaseFile.pas ├── uBundle.pas ├── uDomainObject.pas ├── uGroup.pas ├── uHTML.pas ├── uLinker.pas ├── uML.pas ├── uProject.pas ├── uProjectFile.pas ├── uSharedGlobals.pas ├── uTFile.pas ├── uVisualMASM.pas ├── uVisualMASMFile.pas └── uVisualMASMOptions.pas ├── Examples └── Windows │ ├── Examples │ └── SimpleDialog │ │ ├── Dialog.asm │ │ ├── Dialog.rc │ │ ├── Dialog2.asm │ │ ├── Dialog2.dlg │ │ ├── Dialog2.rc │ │ ├── Release │ │ ├── Dialog2.res │ │ ├── Manifest.xml │ │ └── SimpleDialog.exe │ │ ├── SimpleDialog.vmg │ │ └── SimpleDialog.vmp │ └── Iczelion │ └── DlgBoxAsMainWindow │ ├── Dialog.RES │ ├── Dialog.asm │ ├── Dialog.obj │ ├── Dialog.rc │ ├── DlgBoxAsMainWindow.exe │ ├── DlgBoxAsMainWindow.vmp │ ├── RCa13644 │ └── Tutorial_10_Dialog_Box_as_Main_Window.vmg ├── Help ├── MASM61PROGUIDE.pdf ├── MASM61REF.pdf ├── blue.css ├── blue.html ├── default.css └── default.html ├── History.txt ├── Images ├── Designer │ └── AlignPalette.bmp ├── Icons │ ├── AlighPalette.png │ ├── Manifest.ico │ ├── TMainMenu16x16.png │ ├── TPopMenu16x16.png │ ├── Untergunter-Leaf-Mimes-Text-xml.ico │ ├── application.ico │ ├── application16x16.ico │ ├── asm.ico │ ├── asm16x16.ico │ ├── asm16x16.png │ ├── batch.ico │ ├── binary16x16.ico │ ├── binary16x16.png │ ├── binary_field16x16.ico │ ├── binary_field16x16.png │ ├── dll.ico │ ├── group_16x16.png │ ├── inc_16x16.ico │ ├── include16x16.ico │ ├── include16x16.png │ ├── library16x16.ico │ ├── library16x16.png │ ├── manifest.png │ ├── messagebox16x16.png │ ├── rc.ico │ ├── run.ico │ ├── run.png │ ├── run16x16.png │ ├── runwithdebug.ico │ ├── runwithdebug.png │ ├── tmainmenu.png │ ├── tpopmenu.png │ ├── txt.ico │ ├── visualmasm_white_18x18.ico │ ├── visualmasm_white_32x20_web.png │ ├── xpAlto - Command Prompt.ico │ ├── xpa - txt.ico │ └── xpalto - ms-dos.ico ├── Icons128x128 │ ├── application.png │ └── manifest.png ├── Icons24x24 │ ├── TButton.png │ ├── TCheckBox.png │ ├── TComboBox.png │ ├── TEdit.png │ ├── TGroupBox.png │ ├── TImageList.png │ ├── TLabel.png │ ├── TListBox.png │ ├── TMainMenu.png │ ├── TMemo.png │ ├── TPageControl.png │ ├── TPanel.png │ ├── TPopupMenu.png │ ├── TRadioButton.png │ ├── TRadioGroup.png │ ├── TScrollBar.png │ ├── TTabControl.png │ ├── TTreeView.png │ └── manifest.png ├── Icons32x32 │ ├── application.ico │ ├── asm.ico │ ├── batch.ico │ ├── dll.ico │ ├── group_32x32.png │ ├── inc_32x32.ico │ ├── include32x32.png │ ├── manifest.png │ ├── messagebox32x32.png │ ├── rc.ico │ ├── txt.ico │ ├── visualmasm_white_32x20_web.png │ ├── xpa - txt.ico │ └── xpalto - ms-dos.ico ├── Icons48x48 │ └── application.png ├── Icons64x64 │ ├── Manifest64x64.ico │ ├── VisualMASM63x64.png │ ├── application.ico │ ├── application.png │ ├── asm.ico │ ├── asm64x64.png │ ├── batch.png │ ├── batch64x64.ico │ ├── binary_field64x64.ico │ ├── binary_field64x64.png │ ├── dll.ico │ ├── dll.png │ ├── group_64x64.png │ ├── inc_64x64.ico │ ├── include.png │ ├── library64x64.ico │ ├── library64x64.png │ ├── manifest.png │ ├── messagebox64x64.png │ ├── rc.ico │ ├── rc.png │ ├── txt.ico │ ├── txt.png │ ├── visualmasm_white_64x41_web.png │ ├── xpAlto - Command Prompt.ico │ ├── xpAlto - Command Prompt.png │ ├── xpAlto - MS-DOS.png │ ├── xpa - txt.ico │ └── xpalto - ms-dos.ico ├── VisualMASM.jpg ├── VisualMASM_256x163_web_2.png ├── VisualMASM_32x20_web_2.ico ├── VisualMASM_white_256x183_web.png ├── VisualMASM_white_32x20_web.ico ├── asm.ifx ├── asm16x16.ifx ├── asm64x64.ifx ├── main.png ├── main2.png └── main3.png ├── JsonDataObjects.pas ├── Layouts └── Default.xml ├── README.md ├── Setup ├── VisualMASMSetup.exe └── vmsetup.iss ├── Styles ├── Amakrits.vsf ├── AmethystKamri.vsf ├── AquaGraphite.vsf ├── AquaLightSlate.vsf ├── Auric.vsf ├── Carbon.vsf ├── CharcoalDarkSlate.vsf ├── CobaltXEMedia.vsf ├── CyanDusk.vsf ├── CyanNight.vsf ├── EmeraldLightSlate.vsf ├── GoldenGraphite.vsf ├── IcebergClassico.vsf ├── LavenderClassico.vsf ├── Light.vsf ├── Luna.vsf ├── MetropolisUIBlack.vsf ├── MetropolisUIBlue.vsf ├── MetropolisUIDark.vsf ├── MetropolisUIGreen.png ├── MetropolisUIGreen.vsf ├── Obsidian.vsf ├── RubyGraphite.vsf ├── SapphireKamri.vsf ├── Silver.vsf ├── SlateClassico.vsf ├── SmokeyQuartzKamri.vsf ├── TurquoiseGray.vsf └── VCLMetropolisUIIconLibrary │ ├── add.png │ ├── apply.png │ ├── back.png │ ├── cancel.png │ ├── close.png │ ├── contacts.png │ ├── document.png │ ├── edit.png │ ├── forward.png │ ├── gear.png │ ├── help.png │ ├── home.png │ ├── mute.png │ ├── next.png │ ├── pause.png │ ├── photo.png │ ├── play.png │ ├── prior.png │ ├── refresh.png │ ├── remove.png │ ├── retry.png │ ├── save.png │ ├── search.png │ ├── tools.png │ ├── trash.png │ ├── video.png │ └── volume.png ├── Tooltip ├── uHTML.pas ├── uToolTip.pas ├── uToolTipDirectives.pas ├── uToolTipItem.pas ├── uToolTipMnemonics.pas └── uToolTipRegisters.pas ├── VM.groupproj ├── VisualMASM.dpr ├── VisualMASM.dproj ├── VisualMASM.manifest ├── VisualMASM.res ├── Win32 ├── Debug │ ├── Colors │ │ ├── Amakrits.json │ │ ├── Amethyst Kamri.json │ │ ├── Aqua Graphite.json │ │ ├── Aqua Light Slate.json │ │ ├── Auric.json │ │ ├── Blue.json │ │ ├── Carbon.json │ │ ├── Charcoal Dark Slate.json │ │ ├── Cobalt XEMedia.json │ │ ├── Cyan Dusk.json │ │ ├── Cyan Night.json │ │ ├── Default.json │ │ ├── Emerald Light Slate.json │ │ ├── Golden Graphite.json │ │ ├── Iceberg Classico.json │ │ ├── Lavender Classico.json │ │ ├── Light.json │ │ ├── Luna.json │ │ ├── Metropolis UI Black.json │ │ ├── Metropolis UI Blue.json │ │ ├── Metropolis UI Dark.json │ │ ├── Metropolis UI Green.json │ │ ├── Obsidian.json │ │ ├── Ruby Graphite.json │ │ ├── Sapphire Kamri.json │ │ ├── Silver.json │ │ ├── Slate Classico.json │ │ ├── Smokey Quartz Kamri.json │ │ ├── Turquoise Gray.json │ │ └── Windows.json │ ├── Data │ │ ├── CodeComplImplListFinal_Bright.txt │ │ ├── CodeComplImplListFinal_Dark.txt │ │ ├── CodeComplInsertListFinal.txt │ │ ├── IncludeFiles.txt │ │ ├── WinAPIInsertList.txt │ │ ├── WinAPIList.txt │ │ └── params.txt │ ├── Examples │ │ └── Windows │ │ │ └── Iczelion │ │ │ └── DlgBoxAsMainWindow │ │ │ ├── Dialog.RES │ │ │ ├── Dialog.asm │ │ │ ├── Dialog.obj │ │ │ ├── Dialog.rc │ │ │ ├── DlgBoxAsMainWindow.exe │ │ │ ├── DlgBoxAsMainWindow.vmp │ │ │ ├── RCa13644 │ │ │ └── Tutorial_10_Dialog_Box_as_Main_Window.vmg │ ├── Help │ │ ├── MASM61PROGUIDE.pdf │ │ ├── MASM61REF.pdf │ │ ├── blue.css │ │ ├── blue.html │ │ ├── default.css │ │ └── default.html │ ├── Images │ │ ├── VisualMASM_256x163_web_2.png │ │ └── VisualMASM_white_256x183_web.png │ ├── Layouts │ │ ├── Custom.xml │ │ └── Default.xml │ ├── Projects │ │ ├── ProjectGroup1.vmg │ │ ├── Win32App │ │ │ ├── Release │ │ │ │ └── Win32App.exe │ │ │ └── Win32App.vmp │ │ └── Win32AppDlg │ │ │ ├── Assembly1.asm │ │ │ ├── Debug │ │ │ ├── Dialog2.RES │ │ │ └── Win32AppDlg.exe │ │ │ ├── Dialog2.asm │ │ │ ├── Dialog2.dlg │ │ │ ├── Dialog2.rc │ │ │ ├── Release │ │ │ ├── Dialog2.res │ │ │ └── Win32AppDlg.exe │ │ │ ├── Win32AppDlg.vmp │ │ │ └── manifest.xml │ ├── Styles │ │ ├── Amakrits.vsf │ │ ├── AmethystKamri.vsf │ │ ├── AquaGraphite.vsf │ │ ├── AquaLightSlate.vsf │ │ ├── Auric.vsf │ │ ├── Carbon.vsf │ │ ├── CharcoalDarkSlate.vsf │ │ ├── CobaltXEMedia.vsf │ │ ├── CyanDusk.vsf │ │ ├── CyanNight.vsf │ │ ├── EmeraldLightSlate.vsf │ │ ├── GoldenGraphite.vsf │ │ ├── IcebergClassico.vsf │ │ ├── LavenderClassico.vsf │ │ ├── Light.vsf │ │ ├── Luna.vsf │ │ ├── MetropolisUIBlack.vsf │ │ ├── MetropolisUIBlue.vsf │ │ ├── MetropolisUIDark.vsf │ │ ├── MetropolisUIGreen.png │ │ ├── MetropolisUIGreen.vsf │ │ ├── Obsidian.vsf │ │ ├── RubyGraphite.vsf │ │ ├── SapphireKamri.vsf │ │ ├── Silver.vsf │ │ ├── SlateClassico.vsf │ │ ├── SmokeyQuartzKamri.vsf │ │ ├── TurquoiseGray.vsf │ │ └── VCLMetropolisUIIconLibrary │ │ │ ├── add.png │ │ │ ├── apply.png │ │ │ ├── back.png │ │ │ ├── cancel.png │ │ │ ├── close.png │ │ │ ├── contacts.png │ │ │ ├── document.png │ │ │ ├── edit.png │ │ │ ├── forward.png │ │ │ ├── gear.png │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── list.txt │ │ │ ├── mute.png │ │ │ ├── next.png │ │ │ ├── pause.png │ │ │ ├── photo.png │ │ │ ├── play.png │ │ │ ├── prior.png │ │ │ ├── refresh.png │ │ │ ├── remove.png │ │ │ ├── retry.png │ │ │ ├── save.png │ │ │ ├── search.png │ │ │ ├── tools.png │ │ │ ├── trash.png │ │ │ ├── video.png │ │ │ └── volume.png │ ├── VisualMASM.exe │ ├── hlp │ │ ├── WIN32.HLP │ │ ├── Win32.chm │ │ └── Win32.chw │ ├── templates │ │ ├── Dll.def │ │ ├── LibraryReadMe.txt │ │ ├── MSDOS16COMHelloWorld.asm │ │ ├── MSDOS16EXEHelloWorld.asm │ │ ├── Masm32HelloWorld.asm │ │ ├── Win16Dll.asm │ │ ├── Win16HelloWorld.asm │ │ ├── Win32Dll.asm │ │ ├── Win32HelloWorldConsole.asm │ │ ├── Win32HelloWorldDialog.asm │ │ ├── Win64Dll.asm │ │ ├── WinSDK64HelloWorld.asm │ │ └── manifest.xml │ └── test.txt └── Release │ ├── Colors │ ├── Amakrits.json │ ├── Amethyst Kamri.json │ ├── Aqua Graphite.json │ ├── Aqua Light Slate.json │ ├── Auric.json │ ├── Blue.json │ ├── Carbon.json │ ├── Charcoal Dark Slate.json │ ├── Cobalt XEMedia.json │ ├── Cyan Dusk.json │ ├── Cyan Night.json │ ├── Default.json │ ├── Emerald Light Slate.json │ ├── Golden Graphite.json │ ├── Iceberg Classico.json │ ├── Lavender Classico.json │ ├── Light.json │ ├── Luna.json │ ├── Metropolis UI Black.json │ ├── Metropolis UI Blue.json │ ├── Metropolis UI Dark.json │ ├── Metropolis UI Green.json │ ├── Obsidian.json │ ├── Ruby Graphite.json │ ├── Sapphire Kamri.json │ ├── Silver.json │ ├── Slate Classico.json │ ├── Smokey Quartz Kamri.json │ ├── Turquoise Gray.json │ ├── Windows.json │ └── list.txt │ ├── Data │ ├── CodeComplImplListFinal_Bright.txt │ ├── CodeComplImplListFinal_Dark.txt │ ├── CodeComplInsertListFinal.txt │ ├── IncludeFiles.txt │ ├── WinAPIInsertList.txt │ ├── WinAPIList.txt │ ├── params.txt │ └── visualmasm.json │ ├── Examples │ └── Windows │ │ ├── Iczelion │ │ └── DlgBoxAsMainWindow │ │ │ ├── Dialog.RES │ │ │ ├── Dialog.asm │ │ │ ├── Dialog.obj │ │ │ ├── Dialog.rc │ │ │ ├── DlgBoxAsMainWindow.exe │ │ │ ├── DlgBoxAsMainWindow.vmp │ │ │ ├── RCa13644 │ │ │ └── Tutorial_10_Dialog_Box_as_Main_Window.vmg │ │ └── Projects │ │ ├── Assembly1.asm │ │ ├── Assembly1.obj │ │ ├── Dialog2.RES │ │ ├── Dialog2.asm │ │ ├── Dialog2.dlg │ │ ├── Dialog2.obj │ │ ├── Dialog2.rc │ │ ├── ProjectGroup1.vmg │ │ ├── Win32App.exe │ │ └── Win32App.vmp │ ├── Help │ ├── MASM61PROGUIDE.pdf │ ├── MASM61REF.pdf │ ├── blue.css │ ├── blue.html │ ├── default.css │ └── default.html │ ├── Images │ ├── VisualMASM_256x163_web_2.png │ └── VisualMASM_white_256x183_web.png │ ├── Layouts │ ├── Custom.xml │ └── Default.xml │ ├── Styles │ ├── Amakrits.vsf │ ├── AmethystKamri.vsf │ ├── AquaGraphite.vsf │ ├── AquaLightSlate.vsf │ ├── Auric.vsf │ ├── Carbon.vsf │ ├── CharcoalDarkSlate.vsf │ ├── CobaltXEMedia.vsf │ ├── CyanDusk.vsf │ ├── CyanNight.vsf │ ├── EmeraldLightSlate.vsf │ ├── GoldenGraphite.vsf │ ├── IcebergClassico.vsf │ ├── LavenderClassico.vsf │ ├── Light.vsf │ ├── Luna.vsf │ ├── MetropolisUIBlack.vsf │ ├── MetropolisUIBlue.vsf │ ├── MetropolisUIDark.vsf │ ├── MetropolisUIGreen.png │ ├── MetropolisUIGreen.vsf │ ├── Obsidian.vsf │ ├── RubyGraphite.vsf │ ├── SapphireKamri.vsf │ ├── Silver.vsf │ ├── SlateClassico.vsf │ ├── SmokeyQuartzKamri.vsf │ ├── TurquoiseGray.vsf │ └── VCLMetropolisUIIconLibrary │ │ ├── add.png │ │ ├── apply.png │ │ ├── back.png │ │ ├── cancel.png │ │ ├── close.png │ │ ├── contacts.png │ │ ├── document.png │ │ ├── edit.png │ │ ├── forward.png │ │ ├── gear.png │ │ ├── help.png │ │ ├── home.png │ │ ├── mute.png │ │ ├── next.png │ │ ├── pause.png │ │ ├── photo.png │ │ ├── play.png │ │ ├── prior.png │ │ ├── refresh.png │ │ ├── remove.png │ │ ├── retry.png │ │ ├── save.png │ │ ├── search.png │ │ ├── tools.png │ │ ├── trash.png │ │ ├── video.png │ │ └── volume.png │ ├── VisualMASM.exe │ ├── hlp │ ├── WIN32.HLP │ ├── Win32.chm │ └── Win32.chw │ └── templates │ ├── MSDOS16COMHelloWorld.asm │ ├── MSDOS16EXEHelloWorld.asm │ ├── Masm32HelloWorld.asm │ ├── Win32HelloWorldConsole.asm │ └── WinSDK64HelloWorld.asm ├── WinApiImporter ├── CodeComplImplListFinal.txt ├── CodeComplInsertListFinal.txt ├── CodeCompletionInsertList.txt ├── CodeCompletionList.txt ├── IncludeFiles.txt ├── WinAPIInsertList.txt ├── WinAPIList.txt ├── WinApiImporter.dof ├── WinApiImporter.dpr ├── WinApiImporter.dproj ├── WinApiImporter.exe ├── WinApiImporter.res ├── WinApiImporter_Icon.ico ├── apis.dat ├── apis.txt ├── params.txt ├── uFrmMain.ddp ├── uFrmMain.dfm └── uFrmMain.pas ├── d7zipv1.2 ├── 7z.7z ├── Project1.dof ├── Project1.dpr ├── Project1.exe ├── Project1.res ├── Unit1.dfm ├── Unit1.pas ├── readme.htm └── sevenzip.pas ├── d_frmEditor.dfm ├── d_frmEditor.pas ├── dlgConfirmReplace.dfm ├── dlgConfirmReplace.pas ├── dlgReplaceText.dfm ├── dlgReplaceText.pas ├── dlgSearchText.dfm ├── dlgSearchText.pas ├── hlp ├── WIN32.HLP └── Win32.chm ├── sevenzip.pas ├── templates ├── Dll.def ├── LibraryReadMe.txt ├── MSDOS16COMHelloWorld.asm ├── MSDOS16EXEHelloWorld.asm ├── Masm32HelloWorld.asm ├── Win16Dll.asm ├── Win16HelloWorld.asm ├── Win32Dll.asm ├── Win32HelloWorldConsole.asm ├── Win32HelloWorldDialog.asm ├── Win64Dll.asm ├── WinSDK64HelloWorld.asm └── manifest.xml ├── uDM.dfm ├── uDM.pas ├── uDebugSupportPlugin.pas ├── uDebugger.pas ├── uEditors.pas ├── uFrmAbout.dfm ├── uFrmAbout.pas ├── uFrmDownload.dfm ├── uFrmDownload.pas ├── uFrmExportFunctions.dfm ├── uFrmExportFunctions.pas ├── uFrmLineNumber.dfm ├── uFrmLineNumber.pas ├── uFrmMain.dfm ├── uFrmMain.pas ├── uFrmNewItems.dfm ├── uFrmNewItems.pas ├── uFrmOptions.dfm ├── uFrmOptions.pas ├── uFrmProjectBuildOrder.dfm ├── uFrmProjectBuildOrder.pas ├── uFrmProjectOptions.dfm ├── uFrmProjectOptions.pas ├── uFrmRename.dfm ├── uFrmRename.pas ├── uFrmSetup.dfm ├── uFrmSetup.pas ├── uFrmVideo.dfm └── uFrmVideo.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/.gitignore -------------------------------------------------------------------------------- /Colors/Amakrits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Amakrits.json -------------------------------------------------------------------------------- /Colors/Amethyst Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Amethyst Kamri.json -------------------------------------------------------------------------------- /Colors/Aqua Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Aqua Graphite.json -------------------------------------------------------------------------------- /Colors/Aqua Light Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Aqua Light Slate.json -------------------------------------------------------------------------------- /Colors/Auric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Auric.json -------------------------------------------------------------------------------- /Colors/Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Blue.json -------------------------------------------------------------------------------- /Colors/Carbon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Carbon.json -------------------------------------------------------------------------------- /Colors/Charcoal Dark Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Charcoal Dark Slate.json -------------------------------------------------------------------------------- /Colors/Cobalt XEMedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Cobalt XEMedia.json -------------------------------------------------------------------------------- /Colors/Cyan Dusk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Cyan Dusk.json -------------------------------------------------------------------------------- /Colors/Cyan Night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Cyan Night.json -------------------------------------------------------------------------------- /Colors/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Default.json -------------------------------------------------------------------------------- /Colors/Emerald Light Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Emerald Light Slate.json -------------------------------------------------------------------------------- /Colors/Golden Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Golden Graphite.json -------------------------------------------------------------------------------- /Colors/Iceberg Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Iceberg Classico.json -------------------------------------------------------------------------------- /Colors/Lavender Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Lavender Classico.json -------------------------------------------------------------------------------- /Colors/Light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Light.json -------------------------------------------------------------------------------- /Colors/Luna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Luna.json -------------------------------------------------------------------------------- /Colors/Metropolis UI Black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Metropolis UI Black.json -------------------------------------------------------------------------------- /Colors/Metropolis UI Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Metropolis UI Blue.json -------------------------------------------------------------------------------- /Colors/Metropolis UI Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Metropolis UI Dark.json -------------------------------------------------------------------------------- /Colors/Metropolis UI Green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Metropolis UI Green.json -------------------------------------------------------------------------------- /Colors/Obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Obsidian.json -------------------------------------------------------------------------------- /Colors/Ruby Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Ruby Graphite.json -------------------------------------------------------------------------------- /Colors/Sapphire Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Sapphire Kamri.json -------------------------------------------------------------------------------- /Colors/Silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Silver.json -------------------------------------------------------------------------------- /Colors/Slate Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Slate Classico.json -------------------------------------------------------------------------------- /Colors/Smokey Quartz Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Smokey Quartz Kamri.json -------------------------------------------------------------------------------- /Colors/Turquoise Gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Turquoise Gray.json -------------------------------------------------------------------------------- /Colors/Windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Colors/Windows.json -------------------------------------------------------------------------------- /Domain/uBaseFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uBaseFile.pas -------------------------------------------------------------------------------- /Domain/uBundle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uBundle.pas -------------------------------------------------------------------------------- /Domain/uDomainObject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uDomainObject.pas -------------------------------------------------------------------------------- /Domain/uGroup.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uGroup.pas -------------------------------------------------------------------------------- /Domain/uHTML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uHTML.pas -------------------------------------------------------------------------------- /Domain/uLinker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uLinker.pas -------------------------------------------------------------------------------- /Domain/uML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uML.pas -------------------------------------------------------------------------------- /Domain/uProject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uProject.pas -------------------------------------------------------------------------------- /Domain/uProjectFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uProjectFile.pas -------------------------------------------------------------------------------- /Domain/uSharedGlobals.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uSharedGlobals.pas -------------------------------------------------------------------------------- /Domain/uTFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uTFile.pas -------------------------------------------------------------------------------- /Domain/uVisualMASM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uVisualMASM.pas -------------------------------------------------------------------------------- /Domain/uVisualMASMFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uVisualMASMFile.pas -------------------------------------------------------------------------------- /Domain/uVisualMASMOptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Domain/uVisualMASMOptions.pas -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Dialog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Dialog.asm -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Dialog.rc -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Dialog2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Dialog2.asm -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Dialog2.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Dialog2.dlg -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Dialog2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Dialog2.rc -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Release/Dialog2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Release/Dialog2.res -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Release/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Release/Manifest.xml -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/Release/SimpleDialog.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/Release/SimpleDialog.exe -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/SimpleDialog.vmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/SimpleDialog.vmg -------------------------------------------------------------------------------- /Examples/Windows/Examples/SimpleDialog/SimpleDialog.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Examples/SimpleDialog/SimpleDialog.vmp -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.RES -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.asm -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.obj -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.rc -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.exe -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.vmp -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/RCa13644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/RCa13644 -------------------------------------------------------------------------------- /Examples/Windows/Iczelion/DlgBoxAsMainWindow/Tutorial_10_Dialog_Box_as_Main_Window.vmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Tutorial_10_Dialog_Box_as_Main_Window.vmg -------------------------------------------------------------------------------- /Help/MASM61PROGUIDE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Help/MASM61PROGUIDE.pdf -------------------------------------------------------------------------------- /Help/MASM61REF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Help/MASM61REF.pdf -------------------------------------------------------------------------------- /Help/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Help/blue.css -------------------------------------------------------------------------------- /Help/blue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Help/blue.html -------------------------------------------------------------------------------- /Help/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Help/default.css -------------------------------------------------------------------------------- /Help/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Help/default.html -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/History.txt -------------------------------------------------------------------------------- /Images/Designer/AlignPalette.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Designer/AlignPalette.bmp -------------------------------------------------------------------------------- /Images/Icons/AlighPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/AlighPalette.png -------------------------------------------------------------------------------- /Images/Icons/Manifest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/Manifest.ico -------------------------------------------------------------------------------- /Images/Icons/TMainMenu16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/TMainMenu16x16.png -------------------------------------------------------------------------------- /Images/Icons/TPopMenu16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/TPopMenu16x16.png -------------------------------------------------------------------------------- /Images/Icons/Untergunter-Leaf-Mimes-Text-xml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/Untergunter-Leaf-Mimes-Text-xml.ico -------------------------------------------------------------------------------- /Images/Icons/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/application.ico -------------------------------------------------------------------------------- /Images/Icons/application16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/application16x16.ico -------------------------------------------------------------------------------- /Images/Icons/asm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/asm.ico -------------------------------------------------------------------------------- /Images/Icons/asm16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/asm16x16.ico -------------------------------------------------------------------------------- /Images/Icons/asm16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/asm16x16.png -------------------------------------------------------------------------------- /Images/Icons/batch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/batch.ico -------------------------------------------------------------------------------- /Images/Icons/binary16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/binary16x16.ico -------------------------------------------------------------------------------- /Images/Icons/binary16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/binary16x16.png -------------------------------------------------------------------------------- /Images/Icons/binary_field16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/binary_field16x16.ico -------------------------------------------------------------------------------- /Images/Icons/binary_field16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/binary_field16x16.png -------------------------------------------------------------------------------- /Images/Icons/dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/dll.ico -------------------------------------------------------------------------------- /Images/Icons/group_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/group_16x16.png -------------------------------------------------------------------------------- /Images/Icons/inc_16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/inc_16x16.ico -------------------------------------------------------------------------------- /Images/Icons/include16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/include16x16.ico -------------------------------------------------------------------------------- /Images/Icons/include16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/include16x16.png -------------------------------------------------------------------------------- /Images/Icons/library16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/library16x16.ico -------------------------------------------------------------------------------- /Images/Icons/library16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/library16x16.png -------------------------------------------------------------------------------- /Images/Icons/manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/manifest.png -------------------------------------------------------------------------------- /Images/Icons/messagebox16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/messagebox16x16.png -------------------------------------------------------------------------------- /Images/Icons/rc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/rc.ico -------------------------------------------------------------------------------- /Images/Icons/run.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/run.ico -------------------------------------------------------------------------------- /Images/Icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/run.png -------------------------------------------------------------------------------- /Images/Icons/run16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/run16x16.png -------------------------------------------------------------------------------- /Images/Icons/runwithdebug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/runwithdebug.ico -------------------------------------------------------------------------------- /Images/Icons/runwithdebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/runwithdebug.png -------------------------------------------------------------------------------- /Images/Icons/tmainmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/tmainmenu.png -------------------------------------------------------------------------------- /Images/Icons/tpopmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/tpopmenu.png -------------------------------------------------------------------------------- /Images/Icons/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/txt.ico -------------------------------------------------------------------------------- /Images/Icons/visualmasm_white_18x18.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/visualmasm_white_18x18.ico -------------------------------------------------------------------------------- /Images/Icons/visualmasm_white_32x20_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/visualmasm_white_32x20_web.png -------------------------------------------------------------------------------- /Images/Icons/xpAlto - Command Prompt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/xpAlto - Command Prompt.ico -------------------------------------------------------------------------------- /Images/Icons/xpa - txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/xpa - txt.ico -------------------------------------------------------------------------------- /Images/Icons/xpalto - ms-dos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons/xpalto - ms-dos.ico -------------------------------------------------------------------------------- /Images/Icons128x128/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons128x128/application.png -------------------------------------------------------------------------------- /Images/Icons128x128/manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons128x128/manifest.png -------------------------------------------------------------------------------- /Images/Icons24x24/TButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TButton.png -------------------------------------------------------------------------------- /Images/Icons24x24/TCheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TCheckBox.png -------------------------------------------------------------------------------- /Images/Icons24x24/TComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TComboBox.png -------------------------------------------------------------------------------- /Images/Icons24x24/TEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TEdit.png -------------------------------------------------------------------------------- /Images/Icons24x24/TGroupBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TGroupBox.png -------------------------------------------------------------------------------- /Images/Icons24x24/TImageList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TImageList.png -------------------------------------------------------------------------------- /Images/Icons24x24/TLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TLabel.png -------------------------------------------------------------------------------- /Images/Icons24x24/TListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TListBox.png -------------------------------------------------------------------------------- /Images/Icons24x24/TMainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TMainMenu.png -------------------------------------------------------------------------------- /Images/Icons24x24/TMemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TMemo.png -------------------------------------------------------------------------------- /Images/Icons24x24/TPageControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TPageControl.png -------------------------------------------------------------------------------- /Images/Icons24x24/TPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TPanel.png -------------------------------------------------------------------------------- /Images/Icons24x24/TPopupMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TPopupMenu.png -------------------------------------------------------------------------------- /Images/Icons24x24/TRadioButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TRadioButton.png -------------------------------------------------------------------------------- /Images/Icons24x24/TRadioGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TRadioGroup.png -------------------------------------------------------------------------------- /Images/Icons24x24/TScrollBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TScrollBar.png -------------------------------------------------------------------------------- /Images/Icons24x24/TTabControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TTabControl.png -------------------------------------------------------------------------------- /Images/Icons24x24/TTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/TTreeView.png -------------------------------------------------------------------------------- /Images/Icons24x24/manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons24x24/manifest.png -------------------------------------------------------------------------------- /Images/Icons32x32/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/application.ico -------------------------------------------------------------------------------- /Images/Icons32x32/asm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/asm.ico -------------------------------------------------------------------------------- /Images/Icons32x32/batch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/batch.ico -------------------------------------------------------------------------------- /Images/Icons32x32/dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/dll.ico -------------------------------------------------------------------------------- /Images/Icons32x32/group_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/group_32x32.png -------------------------------------------------------------------------------- /Images/Icons32x32/inc_32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/inc_32x32.ico -------------------------------------------------------------------------------- /Images/Icons32x32/include32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/include32x32.png -------------------------------------------------------------------------------- /Images/Icons32x32/manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/manifest.png -------------------------------------------------------------------------------- /Images/Icons32x32/messagebox32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/messagebox32x32.png -------------------------------------------------------------------------------- /Images/Icons32x32/rc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/rc.ico -------------------------------------------------------------------------------- /Images/Icons32x32/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/txt.ico -------------------------------------------------------------------------------- /Images/Icons32x32/visualmasm_white_32x20_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/visualmasm_white_32x20_web.png -------------------------------------------------------------------------------- /Images/Icons32x32/xpa - txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/xpa - txt.ico -------------------------------------------------------------------------------- /Images/Icons32x32/xpalto - ms-dos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons32x32/xpalto - ms-dos.ico -------------------------------------------------------------------------------- /Images/Icons48x48/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons48x48/application.png -------------------------------------------------------------------------------- /Images/Icons64x64/Manifest64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/Manifest64x64.ico -------------------------------------------------------------------------------- /Images/Icons64x64/VisualMASM63x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/VisualMASM63x64.png -------------------------------------------------------------------------------- /Images/Icons64x64/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/application.ico -------------------------------------------------------------------------------- /Images/Icons64x64/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/application.png -------------------------------------------------------------------------------- /Images/Icons64x64/asm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/asm.ico -------------------------------------------------------------------------------- /Images/Icons64x64/asm64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/asm64x64.png -------------------------------------------------------------------------------- /Images/Icons64x64/batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/batch.png -------------------------------------------------------------------------------- /Images/Icons64x64/batch64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/batch64x64.ico -------------------------------------------------------------------------------- /Images/Icons64x64/binary_field64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/binary_field64x64.ico -------------------------------------------------------------------------------- /Images/Icons64x64/binary_field64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/binary_field64x64.png -------------------------------------------------------------------------------- /Images/Icons64x64/dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/dll.ico -------------------------------------------------------------------------------- /Images/Icons64x64/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/dll.png -------------------------------------------------------------------------------- /Images/Icons64x64/group_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/group_64x64.png -------------------------------------------------------------------------------- /Images/Icons64x64/inc_64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/inc_64x64.ico -------------------------------------------------------------------------------- /Images/Icons64x64/include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/include.png -------------------------------------------------------------------------------- /Images/Icons64x64/library64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/library64x64.ico -------------------------------------------------------------------------------- /Images/Icons64x64/library64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/library64x64.png -------------------------------------------------------------------------------- /Images/Icons64x64/manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/manifest.png -------------------------------------------------------------------------------- /Images/Icons64x64/messagebox64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/messagebox64x64.png -------------------------------------------------------------------------------- /Images/Icons64x64/rc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/rc.ico -------------------------------------------------------------------------------- /Images/Icons64x64/rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/rc.png -------------------------------------------------------------------------------- /Images/Icons64x64/txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/txt.ico -------------------------------------------------------------------------------- /Images/Icons64x64/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/txt.png -------------------------------------------------------------------------------- /Images/Icons64x64/visualmasm_white_64x41_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/visualmasm_white_64x41_web.png -------------------------------------------------------------------------------- /Images/Icons64x64/xpAlto - Command Prompt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/xpAlto - Command Prompt.ico -------------------------------------------------------------------------------- /Images/Icons64x64/xpAlto - Command Prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/xpAlto - Command Prompt.png -------------------------------------------------------------------------------- /Images/Icons64x64/xpAlto - MS-DOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/xpAlto - MS-DOS.png -------------------------------------------------------------------------------- /Images/Icons64x64/xpa - txt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/xpa - txt.ico -------------------------------------------------------------------------------- /Images/Icons64x64/xpalto - ms-dos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/Icons64x64/xpalto - ms-dos.ico -------------------------------------------------------------------------------- /Images/VisualMASM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/VisualMASM.jpg -------------------------------------------------------------------------------- /Images/VisualMASM_256x163_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/VisualMASM_256x163_web_2.png -------------------------------------------------------------------------------- /Images/VisualMASM_32x20_web_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/VisualMASM_32x20_web_2.ico -------------------------------------------------------------------------------- /Images/VisualMASM_white_256x183_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/VisualMASM_white_256x183_web.png -------------------------------------------------------------------------------- /Images/VisualMASM_white_32x20_web.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/VisualMASM_white_32x20_web.ico -------------------------------------------------------------------------------- /Images/asm.ifx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/asm.ifx -------------------------------------------------------------------------------- /Images/asm16x16.ifx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/asm16x16.ifx -------------------------------------------------------------------------------- /Images/asm64x64.ifx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/asm64x64.ifx -------------------------------------------------------------------------------- /Images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/main.png -------------------------------------------------------------------------------- /Images/main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/main2.png -------------------------------------------------------------------------------- /Images/main3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Images/main3.png -------------------------------------------------------------------------------- /JsonDataObjects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/JsonDataObjects.pas -------------------------------------------------------------------------------- /Layouts/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Layouts/Default.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/README.md -------------------------------------------------------------------------------- /Setup/VisualMASMSetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Setup/VisualMASMSetup.exe -------------------------------------------------------------------------------- /Setup/vmsetup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Setup/vmsetup.iss -------------------------------------------------------------------------------- /Styles/Amakrits.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Amakrits.vsf -------------------------------------------------------------------------------- /Styles/AmethystKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/AmethystKamri.vsf -------------------------------------------------------------------------------- /Styles/AquaGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/AquaGraphite.vsf -------------------------------------------------------------------------------- /Styles/AquaLightSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/AquaLightSlate.vsf -------------------------------------------------------------------------------- /Styles/Auric.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Auric.vsf -------------------------------------------------------------------------------- /Styles/Carbon.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Carbon.vsf -------------------------------------------------------------------------------- /Styles/CharcoalDarkSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/CharcoalDarkSlate.vsf -------------------------------------------------------------------------------- /Styles/CobaltXEMedia.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/CobaltXEMedia.vsf -------------------------------------------------------------------------------- /Styles/CyanDusk.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/CyanDusk.vsf -------------------------------------------------------------------------------- /Styles/CyanNight.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/CyanNight.vsf -------------------------------------------------------------------------------- /Styles/EmeraldLightSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/EmeraldLightSlate.vsf -------------------------------------------------------------------------------- /Styles/GoldenGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/GoldenGraphite.vsf -------------------------------------------------------------------------------- /Styles/IcebergClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/IcebergClassico.vsf -------------------------------------------------------------------------------- /Styles/LavenderClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/LavenderClassico.vsf -------------------------------------------------------------------------------- /Styles/Light.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Light.vsf -------------------------------------------------------------------------------- /Styles/Luna.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Luna.vsf -------------------------------------------------------------------------------- /Styles/MetropolisUIBlack.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/MetropolisUIBlack.vsf -------------------------------------------------------------------------------- /Styles/MetropolisUIBlue.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/MetropolisUIBlue.vsf -------------------------------------------------------------------------------- /Styles/MetropolisUIDark.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/MetropolisUIDark.vsf -------------------------------------------------------------------------------- /Styles/MetropolisUIGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/MetropolisUIGreen.png -------------------------------------------------------------------------------- /Styles/MetropolisUIGreen.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/MetropolisUIGreen.vsf -------------------------------------------------------------------------------- /Styles/Obsidian.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Obsidian.vsf -------------------------------------------------------------------------------- /Styles/RubyGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/RubyGraphite.vsf -------------------------------------------------------------------------------- /Styles/SapphireKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/SapphireKamri.vsf -------------------------------------------------------------------------------- /Styles/Silver.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/Silver.vsf -------------------------------------------------------------------------------- /Styles/SlateClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/SlateClassico.vsf -------------------------------------------------------------------------------- /Styles/SmokeyQuartzKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/SmokeyQuartzKamri.vsf -------------------------------------------------------------------------------- /Styles/TurquoiseGray.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/TurquoiseGray.vsf -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/add.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/apply.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/back.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/cancel.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/close.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/contacts.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/document.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/edit.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/forward.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/gear.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/help.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/home.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/mute.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/next.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/pause.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/photo.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/play.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/prior.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/refresh.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/remove.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/retry.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/save.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/search.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/tools.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/trash.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/video.png -------------------------------------------------------------------------------- /Styles/VCLMetropolisUIIconLibrary/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Styles/VCLMetropolisUIIconLibrary/volume.png -------------------------------------------------------------------------------- /Tooltip/uHTML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Tooltip/uHTML.pas -------------------------------------------------------------------------------- /Tooltip/uToolTip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Tooltip/uToolTip.pas -------------------------------------------------------------------------------- /Tooltip/uToolTipDirectives.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Tooltip/uToolTipDirectives.pas -------------------------------------------------------------------------------- /Tooltip/uToolTipItem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Tooltip/uToolTipItem.pas -------------------------------------------------------------------------------- /Tooltip/uToolTipMnemonics.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Tooltip/uToolTipMnemonics.pas -------------------------------------------------------------------------------- /Tooltip/uToolTipRegisters.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Tooltip/uToolTipRegisters.pas -------------------------------------------------------------------------------- /VM.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/VM.groupproj -------------------------------------------------------------------------------- /VisualMASM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/VisualMASM.dpr -------------------------------------------------------------------------------- /VisualMASM.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/VisualMASM.dproj -------------------------------------------------------------------------------- /VisualMASM.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/VisualMASM.manifest -------------------------------------------------------------------------------- /VisualMASM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/VisualMASM.res -------------------------------------------------------------------------------- /Win32/Debug/Colors/Amakrits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Amakrits.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Amethyst Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Amethyst Kamri.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Aqua Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Aqua Graphite.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Aqua Light Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Aqua Light Slate.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Auric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Auric.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Blue.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Carbon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Carbon.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Charcoal Dark Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Charcoal Dark Slate.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Cobalt XEMedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Cobalt XEMedia.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Cyan Dusk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Cyan Dusk.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Cyan Night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Cyan Night.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Default.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Emerald Light Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Emerald Light Slate.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Golden Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Golden Graphite.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Iceberg Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Iceberg Classico.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Lavender Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Lavender Classico.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Light.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Luna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Luna.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Metropolis UI Black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Metropolis UI Black.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Metropolis UI Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Metropolis UI Blue.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Metropolis UI Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Metropolis UI Dark.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Metropolis UI Green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Metropolis UI Green.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Obsidian.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Ruby Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Ruby Graphite.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Sapphire Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Sapphire Kamri.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Silver.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Slate Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Slate Classico.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Smokey Quartz Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Smokey Quartz Kamri.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Turquoise Gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Turquoise Gray.json -------------------------------------------------------------------------------- /Win32/Debug/Colors/Windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Colors/Windows.json -------------------------------------------------------------------------------- /Win32/Debug/Data/CodeComplImplListFinal_Bright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/CodeComplImplListFinal_Bright.txt -------------------------------------------------------------------------------- /Win32/Debug/Data/CodeComplImplListFinal_Dark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/CodeComplImplListFinal_Dark.txt -------------------------------------------------------------------------------- /Win32/Debug/Data/CodeComplInsertListFinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/CodeComplInsertListFinal.txt -------------------------------------------------------------------------------- /Win32/Debug/Data/IncludeFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/IncludeFiles.txt -------------------------------------------------------------------------------- /Win32/Debug/Data/WinAPIInsertList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/WinAPIInsertList.txt -------------------------------------------------------------------------------- /Win32/Debug/Data/WinAPIList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/WinAPIList.txt -------------------------------------------------------------------------------- /Win32/Debug/Data/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Data/params.txt -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.RES -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.asm -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.obj -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.rc -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.exe -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.vmp -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/RCa13644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/RCa13644 -------------------------------------------------------------------------------- /Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Tutorial_10_Dialog_Box_as_Main_Window.vmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Tutorial_10_Dialog_Box_as_Main_Window.vmg -------------------------------------------------------------------------------- /Win32/Debug/Help/MASM61PROGUIDE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Help/MASM61PROGUIDE.pdf -------------------------------------------------------------------------------- /Win32/Debug/Help/MASM61REF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Help/MASM61REF.pdf -------------------------------------------------------------------------------- /Win32/Debug/Help/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Help/blue.css -------------------------------------------------------------------------------- /Win32/Debug/Help/blue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Help/blue.html -------------------------------------------------------------------------------- /Win32/Debug/Help/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Help/default.css -------------------------------------------------------------------------------- /Win32/Debug/Help/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Help/default.html -------------------------------------------------------------------------------- /Win32/Debug/Images/VisualMASM_256x163_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Images/VisualMASM_256x163_web_2.png -------------------------------------------------------------------------------- /Win32/Debug/Images/VisualMASM_white_256x183_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Images/VisualMASM_white_256x183_web.png -------------------------------------------------------------------------------- /Win32/Debug/Layouts/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Layouts/Custom.xml -------------------------------------------------------------------------------- /Win32/Debug/Layouts/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Layouts/Default.xml -------------------------------------------------------------------------------- /Win32/Debug/Projects/ProjectGroup1.vmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/ProjectGroup1.vmg -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32App/Release/Win32App.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32App/Release/Win32App.exe -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32App/Win32App.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32App/Win32App.vmp -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Assembly1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Assembly1.asm -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Debug/Dialog2.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Debug/Dialog2.RES -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Debug/Win32AppDlg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Debug/Win32AppDlg.exe -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Dialog2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Dialog2.asm -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Dialog2.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Dialog2.dlg -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Dialog2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Dialog2.rc -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Release/Dialog2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Release/Dialog2.res -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Release/Win32AppDlg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Release/Win32AppDlg.exe -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/Win32AppDlg.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/Win32AppDlg.vmp -------------------------------------------------------------------------------- /Win32/Debug/Projects/Win32AppDlg/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Projects/Win32AppDlg/manifest.xml -------------------------------------------------------------------------------- /Win32/Debug/Styles/Amakrits.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Amakrits.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/AmethystKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/AmethystKamri.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/AquaGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/AquaGraphite.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/AquaLightSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/AquaLightSlate.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/Auric.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Auric.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/Carbon.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Carbon.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/CharcoalDarkSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/CharcoalDarkSlate.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/CobaltXEMedia.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/CobaltXEMedia.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/CyanDusk.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/CyanDusk.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/CyanNight.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/CyanNight.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/EmeraldLightSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/EmeraldLightSlate.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/GoldenGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/GoldenGraphite.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/IcebergClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/IcebergClassico.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/LavenderClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/LavenderClassico.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/Light.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Light.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/Luna.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Luna.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/MetropolisUIBlack.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/MetropolisUIBlack.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/MetropolisUIBlue.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/MetropolisUIBlue.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/MetropolisUIDark.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/MetropolisUIDark.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/MetropolisUIGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/MetropolisUIGreen.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/MetropolisUIGreen.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/MetropolisUIGreen.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/Obsidian.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Obsidian.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/RubyGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/RubyGraphite.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/SapphireKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/SapphireKamri.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/Silver.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/Silver.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/SlateClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/SlateClassico.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/SmokeyQuartzKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/SmokeyQuartzKamri.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/TurquoiseGray.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/TurquoiseGray.vsf -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/add.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/apply.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/back.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/cancel.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/close.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/contacts.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/document.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/edit.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/forward.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/gear.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/help.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/home.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/list.txt -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/mute.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/next.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/pause.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/photo.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/play.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/prior.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/refresh.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/remove.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/retry.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/save.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/search.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/tools.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/trash.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/video.png -------------------------------------------------------------------------------- /Win32/Debug/Styles/VCLMetropolisUIIconLibrary/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/Styles/VCLMetropolisUIIconLibrary/volume.png -------------------------------------------------------------------------------- /Win32/Debug/VisualMASM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/VisualMASM.exe -------------------------------------------------------------------------------- /Win32/Debug/hlp/WIN32.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/hlp/WIN32.HLP -------------------------------------------------------------------------------- /Win32/Debug/hlp/Win32.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/hlp/Win32.chm -------------------------------------------------------------------------------- /Win32/Debug/hlp/Win32.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/hlp/Win32.chw -------------------------------------------------------------------------------- /Win32/Debug/templates/Dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Dll.def -------------------------------------------------------------------------------- /Win32/Debug/templates/LibraryReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/LibraryReadMe.txt -------------------------------------------------------------------------------- /Win32/Debug/templates/MSDOS16COMHelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/MSDOS16COMHelloWorld.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/MSDOS16EXEHelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/MSDOS16EXEHelloWorld.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Masm32HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Masm32HelloWorld.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Win16Dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Win16Dll.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Win16HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Win16HelloWorld.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Win32Dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Win32Dll.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Win32HelloWorldConsole.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Win32HelloWorldConsole.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Win32HelloWorldDialog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Win32HelloWorldDialog.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/Win64Dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/Win64Dll.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/WinSDK64HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/WinSDK64HelloWorld.asm -------------------------------------------------------------------------------- /Win32/Debug/templates/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/templates/manifest.xml -------------------------------------------------------------------------------- /Win32/Debug/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Debug/test.txt -------------------------------------------------------------------------------- /Win32/Release/Colors/Amakrits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Amakrits.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Amethyst Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Amethyst Kamri.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Aqua Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Aqua Graphite.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Aqua Light Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Aqua Light Slate.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Auric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Auric.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Blue.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Carbon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Carbon.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Charcoal Dark Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Charcoal Dark Slate.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Cobalt XEMedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Cobalt XEMedia.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Cyan Dusk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Cyan Dusk.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Cyan Night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Cyan Night.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Default.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Emerald Light Slate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Emerald Light Slate.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Golden Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Golden Graphite.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Iceberg Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Iceberg Classico.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Lavender Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Lavender Classico.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Light.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Luna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Luna.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Metropolis UI Black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Metropolis UI Black.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Metropolis UI Blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Metropolis UI Blue.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Metropolis UI Dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Metropolis UI Dark.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Metropolis UI Green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Metropolis UI Green.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Obsidian.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Ruby Graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Ruby Graphite.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Sapphire Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Sapphire Kamri.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Silver.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Slate Classico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Slate Classico.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Smokey Quartz Kamri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Smokey Quartz Kamri.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Turquoise Gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Turquoise Gray.json -------------------------------------------------------------------------------- /Win32/Release/Colors/Windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/Windows.json -------------------------------------------------------------------------------- /Win32/Release/Colors/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Colors/list.txt -------------------------------------------------------------------------------- /Win32/Release/Data/CodeComplImplListFinal_Bright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/CodeComplImplListFinal_Bright.txt -------------------------------------------------------------------------------- /Win32/Release/Data/CodeComplImplListFinal_Dark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/CodeComplImplListFinal_Dark.txt -------------------------------------------------------------------------------- /Win32/Release/Data/CodeComplInsertListFinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/CodeComplInsertListFinal.txt -------------------------------------------------------------------------------- /Win32/Release/Data/IncludeFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/IncludeFiles.txt -------------------------------------------------------------------------------- /Win32/Release/Data/WinAPIInsertList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/WinAPIInsertList.txt -------------------------------------------------------------------------------- /Win32/Release/Data/WinAPIList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/WinAPIList.txt -------------------------------------------------------------------------------- /Win32/Release/Data/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/params.txt -------------------------------------------------------------------------------- /Win32/Release/Data/visualmasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Data/visualmasm.json -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.RES -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.asm -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.obj -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Dialog.rc -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.exe -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/DlgBoxAsMainWindow.vmp -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/RCa13644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/RCa13644 -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Tutorial_10_Dialog_Box_as_Main_Window.vmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Iczelion/DlgBoxAsMainWindow/Tutorial_10_Dialog_Box_as_Main_Window.vmg -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Assembly1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Assembly1.asm -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Assembly1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Assembly1.obj -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Dialog2.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Dialog2.RES -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Dialog2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Dialog2.asm -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Dialog2.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Dialog2.dlg -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Dialog2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Dialog2.obj -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Dialog2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Dialog2.rc -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/ProjectGroup1.vmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/ProjectGroup1.vmg -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Win32App.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Win32App.exe -------------------------------------------------------------------------------- /Win32/Release/Examples/Windows/Projects/Win32App.vmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Examples/Windows/Projects/Win32App.vmp -------------------------------------------------------------------------------- /Win32/Release/Help/MASM61PROGUIDE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Help/MASM61PROGUIDE.pdf -------------------------------------------------------------------------------- /Win32/Release/Help/MASM61REF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Help/MASM61REF.pdf -------------------------------------------------------------------------------- /Win32/Release/Help/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Help/blue.css -------------------------------------------------------------------------------- /Win32/Release/Help/blue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Help/blue.html -------------------------------------------------------------------------------- /Win32/Release/Help/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Help/default.css -------------------------------------------------------------------------------- /Win32/Release/Help/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Help/default.html -------------------------------------------------------------------------------- /Win32/Release/Images/VisualMASM_256x163_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Images/VisualMASM_256x163_web_2.png -------------------------------------------------------------------------------- /Win32/Release/Images/VisualMASM_white_256x183_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Images/VisualMASM_white_256x183_web.png -------------------------------------------------------------------------------- /Win32/Release/Layouts/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Layouts/Custom.xml -------------------------------------------------------------------------------- /Win32/Release/Layouts/Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Layouts/Default.xml -------------------------------------------------------------------------------- /Win32/Release/Styles/Amakrits.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Amakrits.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/AmethystKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/AmethystKamri.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/AquaGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/AquaGraphite.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/AquaLightSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/AquaLightSlate.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/Auric.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Auric.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/Carbon.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Carbon.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/CharcoalDarkSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/CharcoalDarkSlate.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/CobaltXEMedia.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/CobaltXEMedia.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/CyanDusk.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/CyanDusk.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/CyanNight.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/CyanNight.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/EmeraldLightSlate.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/EmeraldLightSlate.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/GoldenGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/GoldenGraphite.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/IcebergClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/IcebergClassico.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/LavenderClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/LavenderClassico.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/Light.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Light.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/Luna.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Luna.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/MetropolisUIBlack.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/MetropolisUIBlack.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/MetropolisUIBlue.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/MetropolisUIBlue.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/MetropolisUIDark.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/MetropolisUIDark.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/MetropolisUIGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/MetropolisUIGreen.png -------------------------------------------------------------------------------- /Win32/Release/Styles/MetropolisUIGreen.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/MetropolisUIGreen.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/Obsidian.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Obsidian.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/RubyGraphite.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/RubyGraphite.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/SapphireKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/SapphireKamri.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/Silver.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/Silver.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/SlateClassico.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/SlateClassico.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/SmokeyQuartzKamri.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/SmokeyQuartzKamri.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/TurquoiseGray.vsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/TurquoiseGray.vsf -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/add.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/apply.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/back.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/cancel.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/close.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/contacts.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/document.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/edit.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/forward.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/gear.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/help.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/home.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/mute.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/next.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/pause.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/photo.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/play.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/prior.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/refresh.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/remove.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/retry.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/save.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/search.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/tools.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/trash.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/video.png -------------------------------------------------------------------------------- /Win32/Release/Styles/VCLMetropolisUIIconLibrary/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/Styles/VCLMetropolisUIIconLibrary/volume.png -------------------------------------------------------------------------------- /Win32/Release/VisualMASM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/VisualMASM.exe -------------------------------------------------------------------------------- /Win32/Release/hlp/WIN32.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/hlp/WIN32.HLP -------------------------------------------------------------------------------- /Win32/Release/hlp/Win32.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/hlp/Win32.chm -------------------------------------------------------------------------------- /Win32/Release/hlp/Win32.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/hlp/Win32.chw -------------------------------------------------------------------------------- /Win32/Release/templates/MSDOS16COMHelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/templates/MSDOS16COMHelloWorld.asm -------------------------------------------------------------------------------- /Win32/Release/templates/MSDOS16EXEHelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/templates/MSDOS16EXEHelloWorld.asm -------------------------------------------------------------------------------- /Win32/Release/templates/Masm32HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/templates/Masm32HelloWorld.asm -------------------------------------------------------------------------------- /Win32/Release/templates/Win32HelloWorldConsole.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/templates/Win32HelloWorldConsole.asm -------------------------------------------------------------------------------- /Win32/Release/templates/WinSDK64HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/Win32/Release/templates/WinSDK64HelloWorld.asm -------------------------------------------------------------------------------- /WinApiImporter/CodeComplImplListFinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/CodeComplImplListFinal.txt -------------------------------------------------------------------------------- /WinApiImporter/CodeComplInsertListFinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/CodeComplInsertListFinal.txt -------------------------------------------------------------------------------- /WinApiImporter/CodeCompletionInsertList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/CodeCompletionInsertList.txt -------------------------------------------------------------------------------- /WinApiImporter/CodeCompletionList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/CodeCompletionList.txt -------------------------------------------------------------------------------- /WinApiImporter/IncludeFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/IncludeFiles.txt -------------------------------------------------------------------------------- /WinApiImporter/WinAPIInsertList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinAPIInsertList.txt -------------------------------------------------------------------------------- /WinApiImporter/WinAPIList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinAPIList.txt -------------------------------------------------------------------------------- /WinApiImporter/WinApiImporter.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinApiImporter.dof -------------------------------------------------------------------------------- /WinApiImporter/WinApiImporter.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinApiImporter.dpr -------------------------------------------------------------------------------- /WinApiImporter/WinApiImporter.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinApiImporter.dproj -------------------------------------------------------------------------------- /WinApiImporter/WinApiImporter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinApiImporter.exe -------------------------------------------------------------------------------- /WinApiImporter/WinApiImporter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinApiImporter.res -------------------------------------------------------------------------------- /WinApiImporter/WinApiImporter_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/WinApiImporter_Icon.ico -------------------------------------------------------------------------------- /WinApiImporter/apis.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/apis.dat -------------------------------------------------------------------------------- /WinApiImporter/apis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/apis.txt -------------------------------------------------------------------------------- /WinApiImporter/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/params.txt -------------------------------------------------------------------------------- /WinApiImporter/uFrmMain.ddp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/uFrmMain.ddp -------------------------------------------------------------------------------- /WinApiImporter/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/uFrmMain.dfm -------------------------------------------------------------------------------- /WinApiImporter/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/WinApiImporter/uFrmMain.pas -------------------------------------------------------------------------------- /d7zipv1.2/7z.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/7z.7z -------------------------------------------------------------------------------- /d7zipv1.2/Project1.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/Project1.dof -------------------------------------------------------------------------------- /d7zipv1.2/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/Project1.dpr -------------------------------------------------------------------------------- /d7zipv1.2/Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/Project1.exe -------------------------------------------------------------------------------- /d7zipv1.2/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/Project1.res -------------------------------------------------------------------------------- /d7zipv1.2/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/Unit1.dfm -------------------------------------------------------------------------------- /d7zipv1.2/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/Unit1.pas -------------------------------------------------------------------------------- /d7zipv1.2/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/readme.htm -------------------------------------------------------------------------------- /d7zipv1.2/sevenzip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d7zipv1.2/sevenzip.pas -------------------------------------------------------------------------------- /d_frmEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d_frmEditor.dfm -------------------------------------------------------------------------------- /d_frmEditor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/d_frmEditor.pas -------------------------------------------------------------------------------- /dlgConfirmReplace.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/dlgConfirmReplace.dfm -------------------------------------------------------------------------------- /dlgConfirmReplace.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/dlgConfirmReplace.pas -------------------------------------------------------------------------------- /dlgReplaceText.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/dlgReplaceText.dfm -------------------------------------------------------------------------------- /dlgReplaceText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/dlgReplaceText.pas -------------------------------------------------------------------------------- /dlgSearchText.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/dlgSearchText.dfm -------------------------------------------------------------------------------- /dlgSearchText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/dlgSearchText.pas -------------------------------------------------------------------------------- /hlp/WIN32.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/hlp/WIN32.HLP -------------------------------------------------------------------------------- /hlp/Win32.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/hlp/Win32.chm -------------------------------------------------------------------------------- /sevenzip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/sevenzip.pas -------------------------------------------------------------------------------- /templates/Dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Dll.def -------------------------------------------------------------------------------- /templates/LibraryReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/LibraryReadMe.txt -------------------------------------------------------------------------------- /templates/MSDOS16COMHelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/MSDOS16COMHelloWorld.asm -------------------------------------------------------------------------------- /templates/MSDOS16EXEHelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/MSDOS16EXEHelloWorld.asm -------------------------------------------------------------------------------- /templates/Masm32HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Masm32HelloWorld.asm -------------------------------------------------------------------------------- /templates/Win16Dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Win16Dll.asm -------------------------------------------------------------------------------- /templates/Win16HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Win16HelloWorld.asm -------------------------------------------------------------------------------- /templates/Win32Dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Win32Dll.asm -------------------------------------------------------------------------------- /templates/Win32HelloWorldConsole.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Win32HelloWorldConsole.asm -------------------------------------------------------------------------------- /templates/Win32HelloWorldDialog.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Win32HelloWorldDialog.asm -------------------------------------------------------------------------------- /templates/Win64Dll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/Win64Dll.asm -------------------------------------------------------------------------------- /templates/WinSDK64HelloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/WinSDK64HelloWorld.asm -------------------------------------------------------------------------------- /templates/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/templates/manifest.xml -------------------------------------------------------------------------------- /uDM.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uDM.dfm -------------------------------------------------------------------------------- /uDM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uDM.pas -------------------------------------------------------------------------------- /uDebugSupportPlugin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uDebugSupportPlugin.pas -------------------------------------------------------------------------------- /uDebugger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uDebugger.pas -------------------------------------------------------------------------------- /uEditors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uEditors.pas -------------------------------------------------------------------------------- /uFrmAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmAbout.dfm -------------------------------------------------------------------------------- /uFrmAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmAbout.pas -------------------------------------------------------------------------------- /uFrmDownload.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmDownload.dfm -------------------------------------------------------------------------------- /uFrmDownload.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmDownload.pas -------------------------------------------------------------------------------- /uFrmExportFunctions.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmExportFunctions.dfm -------------------------------------------------------------------------------- /uFrmExportFunctions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmExportFunctions.pas -------------------------------------------------------------------------------- /uFrmLineNumber.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmLineNumber.dfm -------------------------------------------------------------------------------- /uFrmLineNumber.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmLineNumber.pas -------------------------------------------------------------------------------- /uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmMain.dfm -------------------------------------------------------------------------------- /uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmMain.pas -------------------------------------------------------------------------------- /uFrmNewItems.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmNewItems.dfm -------------------------------------------------------------------------------- /uFrmNewItems.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmNewItems.pas -------------------------------------------------------------------------------- /uFrmOptions.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmOptions.dfm -------------------------------------------------------------------------------- /uFrmOptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmOptions.pas -------------------------------------------------------------------------------- /uFrmProjectBuildOrder.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmProjectBuildOrder.dfm -------------------------------------------------------------------------------- /uFrmProjectBuildOrder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmProjectBuildOrder.pas -------------------------------------------------------------------------------- /uFrmProjectOptions.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmProjectOptions.dfm -------------------------------------------------------------------------------- /uFrmProjectOptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmProjectOptions.pas -------------------------------------------------------------------------------- /uFrmRename.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmRename.dfm -------------------------------------------------------------------------------- /uFrmRename.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmRename.pas -------------------------------------------------------------------------------- /uFrmSetup.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmSetup.dfm -------------------------------------------------------------------------------- /uFrmSetup.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmSetup.pas -------------------------------------------------------------------------------- /uFrmVideo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmVideo.dfm -------------------------------------------------------------------------------- /uFrmVideo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasJaeger/VisualMASM/HEAD/uFrmVideo.pas --------------------------------------------------------------------------------