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??
Printable View
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??
eh?
What debugger?
Cheers.
In command prompt if u write "debug" u r switched to debugger modeQuote:
Originally Posted by Raedwulf
Crap.....I never knew that
Cheers. - as to you question - i have no idea what the answer is.
Write it in a text editor. Assemble it with an assembler. Type the assembly hex code into debug.Quote:
Originally Posted by Abbas Haider
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.