Td Win32asm 010.Asm

download Td Win32asm 010.Asm

of 12

Transcript of Td Win32asm 010.Asm

  • 8/10/2019 Td Win32asm 010.Asm

    1/12

  • 8/10/2019 Td Win32asm 010.Asm

    2/12

  • 8/10/2019 Td Win32asm 010.Asm

    3/12

  • 8/10/2019 Td Win32asm 010.Asm

    4/12

  • 8/10/2019 Td Win32asm 010.Asm

    5/12

  • 8/10/2019 Td Win32asm 010.Asm

    6/12

  • 8/10/2019 Td Win32asm 010.Asm

    7/12

  • 8/10/2019 Td Win32asm 010.Asm

    8/12

  • 8/10/2019 Td Win32asm 010.Asm

    9/12

  • 8/10/2019 Td Win32asm 010.Asm

    10/12

  • 8/10/2019 Td Win32asm 010.Asm

    11/12

  • 8/10/2019 Td Win32asm 010.Asm

    12/12

    td_win32asm_010.asmcall DefWindowProcA ;- API Function -mov esp,ebp ;delete stack framepop ebp ;ret 10h ;return and clear stack;##############################################################################

    ;******************************************************************************

    ; My own subroutine(s) for a compacter code resist here ...;------------------------------------------------------------------------------My_CleanSystem:

    ret;******************************************************************************

    ;==============================================================================; end Main = end of our program code;------------------------------------------------------------------------------end Main ;end of our program code, entry point

    ;==============================================================================; To create the exe file use this commands with your Microsoft Assembler/Linker;------------------------------------------------------------------------------; ml.exe /c /coff td_win32asm_010.asm ;asm command; rc.exe /v rsrc.rc ;rc command; cvtres.exe /machine:ix86 rsrc.res; link.exe /subsystem:windows td_win32asm_010.obj rsrc.obj ;link command;==============================================================================

    Page 12