|
-
Feb 22nd, 2006, 02:02 PM
#1
Thread Starter
Hyperactive Member
Reverse Function in debugger
I want to make a function in debugger which reverse a given string
For example
If it is written : BLASEN
after applying the fuction it appears: NESALB
How can I do that??
-
Mar 24th, 2006, 04:17 AM
#2
Addicted Member
Re: Reverse Function in debugger
eh?
What debugger?
Cheers.
-
Mar 24th, 2006, 12:59 PM
#3
Thread Starter
Hyperactive Member
Re: Reverse Function in debugger
 Originally Posted by Raedwulf
eh?
What debugger?
Cheers.
In command prompt if u write "debug" u r switched to debugger mode
-
Mar 24th, 2006, 01:26 PM
#4
Addicted Member
Re: Reverse Function in debugger
Crap.....I never knew that
Cheers. - as to you question - i have no idea what the answer is.
-
Mar 28th, 2006, 02:19 PM
#5
Re: Reverse Function in debugger
 Originally Posted by Abbas Haider
I want to make a function in debugger which reverse a given string
For example
If it is written : BLASEN
after applying the fuction it appears: NESALB
How can I do that??
Write it in a text editor. Assemble it with an assembler. Type the assembly hex code into debug.
Hint: point a register at the end of the string. Point another one at the beginning of blank string space. Read from the first register (using it as a pointer), write with the second one, dec the first one, inc the second one - either until you reach your beginning-of-string mark, or for the number of bytes you want to reverse.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|