Log in

View Full Version : copy and paste under Softice


newbcrk
February 8th, 2003, 12:36
Hello ,

How was I be able to copy and paste some ASM code of Softice to a file such as word .doc or .rtf ?
Morever I use windows NT 2000 .
I have install IceDump for Windows NT 2000 PRO but I don't know how to use it to copy and paste .


thanks .

naides
February 9th, 2003, 14:37
Quote:
Originally posted by newbcrk
Hello ,

How was I be able to copy and paste some ASM code of Softice to a file such as word .doc or .rtf ?
Morever I use windows NT 2000 .
I have install IceDump for Windows NT 2000 PRO but I don't know how to use it to copy and paste .


thanks .



The question is why would you want to copy and paste ASM code from Sice?

If you want to copy the actual bytes, like grabbing the code to transplant it into something else, use a hexeditor with disasm capabilities i.e. HIEW

if you want to obtain the dissasembed code, let us say, to write a tutor or ask a question, Sice is not the tool for the job, use a disassembler: Windasm.

If you want Sice screen shots, search back into the board, it has been discussed before.

Aimless
February 9th, 2003, 23:59
1. Go to Softice

2. Find out the starting address from where you want the code to start (assume 400000)

3. Find out the ending address upto where you want the code to finish (assume 400300)

4. Perform ending - start (i.e. 400300 - 400000 = 300)

5. Type in the command window:

U 400000 L 300

You will find that you have got the disassembly in the command window

6. Ctrl+D to go back to windows

7. Open SoftICE Symbol Loader

8. Select File->Save to Log file

9. Give name for you file. Whatever is there in the command window (currently the disassembly for 400000 to 400300) will be saved to this file

10. This file is in text format. Open it in any word processor and save as .RTF or .DOC

Have Phun,

newbcrk
February 15th, 2003, 05:09


Thanks to Aimless an the other .
That is exactly the answer that I search with the symbol loader .