Results 1 to 2 of 2
  1. #1
    proseco91
    proseco91 is offline
    New member
    Join Date
    2012 Jun
    Posts
    6
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Thumbs up Using assembly in AutoIT

    Code:
    [ENABLE]
    registersymbol(useAddress)
    alloc(newmem,2048) //2kb should be enough
    alloc(useAddress,4)
    label(returnhere)
    label(originalcode)
    label(exit)
    
    0064CF0B:
    jmp newmem
    nop
    returnhere:
    
    newmem: //this is allocated memory, you have read,write,execute access
    //place your code here
    mov [useAddress],edi
    originalcode:
    mov eax,[edi+000005A4]
    
    exit:
    jmp returnhere
    
    [DISABLE]
    unregistersymbol(useAddress)
    dealloc(newmem)
    dealloc(useAddress)
    0064CF0B:
    mov eax,[edi+000005A4]
    How do read "mov eax,[edi+000005A4]" it in AutoIt?

  2. #2
    jesjr
    jesjr is offline
    Guest
    Join Date
    2012 Aug
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    where to put that in?

Similar Threads

  1. Dragon Nest Assembly Files
    By goodclass in forum Trash Bin
    Replies: 4
    Last Post: 2012-05-27, 07:06 AM
  2. assembly test (requesting information)
    By Haede in forum General Game Research
    Replies: 2
    Last Post: 2011-08-13, 06:19 AM
  3. [Asm] Basic assembly instructions (opcodes) and examples
    By Dwar in forum Programming Tutorials
    Replies: 2
    Last Post: 2011-03-16, 01:15 PM
  4. [Asm] Beginner's Guide to x86 Assembly and Debugging Apps
    By Dwar in forum Programming Tutorials
    Replies: 1
    Last Post: 2011-02-13, 05:57 PM
  5. [Asm] Win32 Assembly Cheat Sheet
    By Dwar in forum Programming Tutorials
    Replies: 0
    Last Post: 2010-11-29, 04:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •