├── .gitattributes ├── .gitignore ├── AddIns ├── UASM32.ct ├── UASM32.kwl ├── UASM32Parse.dll ├── UASM64.ct ├── UASM64.kwl └── UASM64Parse.dll ├── README.md ├── Release └── UASM-with-RadASM.zip ├── UASM32.ini ├── UASM32 ├── ErrorCodes.dat ├── Templates │ ├── DialogAsMain_x86.tpl │ ├── Dll32Project.tpl │ ├── ModernUIDialogAsMain.tpl │ ├── ModernUI_Control.tpl │ └── x32dbg_plugin.tpl ├── UASM32ApiCall.api ├── UASM32ApiConst.api ├── UASM32ApiStruct.api ├── UASM32ApiWord.api ├── UASM32Array.api ├── UASM32Message.api ├── UASM32Stdlib.api ├── UASM32Type.api └── error.txt ├── UASM64.ini └── UASM64 ├── ErrorCodes.dat ├── Templates ├── ConsoleApplication_x64.tpl ├── DialogAsMain_x64.tpl ├── Dll64Project.tpl ├── ModernUIDialogAsMain.tpl ├── ModernUI_Control.tpl └── x64dbg_plugin.tpl ├── UASM64ApiCall.api ├── UASM64ApiConst.api ├── UASM64ApiStruct.api ├── UASM64ApiWord.api ├── UASM64Array.api ├── UASM64Message.api ├── UASM64Stdlib.api ├── UASM64Type.api └── error.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/.gitignore -------------------------------------------------------------------------------- /AddIns/UASM32.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/AddIns/UASM32.ct -------------------------------------------------------------------------------- /AddIns/UASM32.kwl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/AddIns/UASM32.kwl -------------------------------------------------------------------------------- /AddIns/UASM32Parse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/AddIns/UASM32Parse.dll -------------------------------------------------------------------------------- /AddIns/UASM64.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/AddIns/UASM64.ct -------------------------------------------------------------------------------- /AddIns/UASM64.kwl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/AddIns/UASM64.kwl -------------------------------------------------------------------------------- /AddIns/UASM64Parse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/AddIns/UASM64Parse.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/README.md -------------------------------------------------------------------------------- /Release/UASM-with-RadASM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/Release/UASM-with-RadASM.zip -------------------------------------------------------------------------------- /UASM32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32.ini -------------------------------------------------------------------------------- /UASM32/ErrorCodes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/ErrorCodes.dat -------------------------------------------------------------------------------- /UASM32/Templates/DialogAsMain_x86.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/Templates/DialogAsMain_x86.tpl -------------------------------------------------------------------------------- /UASM32/Templates/Dll32Project.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/Templates/Dll32Project.tpl -------------------------------------------------------------------------------- /UASM32/Templates/ModernUIDialogAsMain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/Templates/ModernUIDialogAsMain.tpl -------------------------------------------------------------------------------- /UASM32/Templates/ModernUI_Control.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/Templates/ModernUI_Control.tpl -------------------------------------------------------------------------------- /UASM32/Templates/x32dbg_plugin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/Templates/x32dbg_plugin.tpl -------------------------------------------------------------------------------- /UASM32/UASM32ApiCall.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32ApiCall.api -------------------------------------------------------------------------------- /UASM32/UASM32ApiConst.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32ApiConst.api -------------------------------------------------------------------------------- /UASM32/UASM32ApiStruct.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32ApiStruct.api -------------------------------------------------------------------------------- /UASM32/UASM32ApiWord.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32ApiWord.api -------------------------------------------------------------------------------- /UASM32/UASM32Array.api: -------------------------------------------------------------------------------- 1 | MAX_PATH,260 2 | MAXIMUM_WAIT_OBJECTS,64 3 | -------------------------------------------------------------------------------- /UASM32/UASM32Message.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32Message.api -------------------------------------------------------------------------------- /UASM32/UASM32Stdlib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32Stdlib.api -------------------------------------------------------------------------------- /UASM32/UASM32Type.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/UASM32Type.api -------------------------------------------------------------------------------- /UASM32/error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM32/error.txt -------------------------------------------------------------------------------- /UASM64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64.ini -------------------------------------------------------------------------------- /UASM64/ErrorCodes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/ErrorCodes.dat -------------------------------------------------------------------------------- /UASM64/Templates/ConsoleApplication_x64.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/Templates/ConsoleApplication_x64.tpl -------------------------------------------------------------------------------- /UASM64/Templates/DialogAsMain_x64.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/Templates/DialogAsMain_x64.tpl -------------------------------------------------------------------------------- /UASM64/Templates/Dll64Project.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/Templates/Dll64Project.tpl -------------------------------------------------------------------------------- /UASM64/Templates/ModernUIDialogAsMain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/Templates/ModernUIDialogAsMain.tpl -------------------------------------------------------------------------------- /UASM64/Templates/ModernUI_Control.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/Templates/ModernUI_Control.tpl -------------------------------------------------------------------------------- /UASM64/Templates/x64dbg_plugin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/Templates/x64dbg_plugin.tpl -------------------------------------------------------------------------------- /UASM64/UASM64ApiCall.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64ApiCall.api -------------------------------------------------------------------------------- /UASM64/UASM64ApiConst.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64ApiConst.api -------------------------------------------------------------------------------- /UASM64/UASM64ApiStruct.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64ApiStruct.api -------------------------------------------------------------------------------- /UASM64/UASM64ApiWord.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64ApiWord.api -------------------------------------------------------------------------------- /UASM64/UASM64Array.api: -------------------------------------------------------------------------------- 1 | MAX_PATH,260 2 | MAXIMUM_WAIT_OBJECTS,64 3 | -------------------------------------------------------------------------------- /UASM64/UASM64Message.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64Message.api -------------------------------------------------------------------------------- /UASM64/UASM64Stdlib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64Stdlib.api -------------------------------------------------------------------------------- /UASM64/UASM64Type.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/UASM64Type.api -------------------------------------------------------------------------------- /UASM64/error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/UASM-with-RadASM/HEAD/UASM64/error.txt --------------------------------------------------------------------------------