VOGONS

Common searches


Search results

Display options

Re: Writing a patch in ASM

Well, this is not my code ;) I have written: lea bx, EXEC_INFO and not: mov bx, EXEC_INFO LEA != MOV. Actually it is your code ;) You have written: lea bx, EXEC_INFO and I converted it to: mov bx, EXEC_INFO A86:LEA != A86:MOV , but A86:LEA == NASM:MOV following http://left404.com/2011/01/04/ …

Re: Writing a patch in ASM

the "2E 66 FF 26 67 01" first 0x66 is a 32bit size override. I use "jmp far [cs: xxxxxx]" in nasm instead of jump dword That's it! :D My syntax error it was: when using 'jmp far [cs:xxxxx[' all works like it should. I will mark this thread solved when I regain access to my account. Thanks …

Re: Writing a patch in ASM

I think I found the problem, its probably me and my coding but I have that feeling... When I convert: A86: jmp dword ptr cs:[INTORIG] into NASM: jmp dword [cs:INTORIG] After compiling: A86: jmp dword ptr cs:[INTORIG] ---> 2E FF 2E 66 01 to NASM: jmp dword [cs:INTORIG] ---> 2E 66 FF 26 67 01 When I …

Passwords lost

in Milliways
Hi, I had a password database corruption 😊 , so I'm locked out of the forum amongst other things. I could not find an admin email address to contact, and since I cannot send PM's as a new user I'm in limbo. Digitally I'm 😵 in the water, so what can be done, appreciate the help.

Re: Writing a patch in ASM

Sorry guys, I had an unfortunate accident, my password database got corrupted amongst other things and I have no backup :blush: No important data is lost except for that. *phew* So I will contact an admin and ask how to go about this, just letting everyone know as I appreciate your feedback. If you …

Page 1 of 1