명령어

단축키 

설명 

step into

[F7]

하나의 opcode 실행(CALL명령을 만나면 그 함수코드 내부로 따라 들어감)

step over

[F8] 

하나의 opcode 실행(CALL 명령을 만나면 따라 들어가지 않고 함수 자체를 실행)

Restart

Ctrl + [F2] 

다시 처음부터 디버깅 시작(디버깅을 당하는 프로세스를 종료하고 재실행시킴)

Go to

Ctrl + [G]

원하는 주소를 찾아감(코드를 확인할 때 사용, 실행되는것은 아님)

Run

[F9]

실행(BP가 걸려있으면 그곳에서 실행이 정지됨)

Execute till return

Ctrl + [F9]

함수 코드 내에서 RETN 명령어까지 실행(함수 탈출 목적)

Execute till cusor

[F4]

cursor 위치까지 실행함(디버깅하고 싶은 주소까지 바로 갈 수 있음)

Comment

;

Comment 추가

User-defined comment

마우스 메뉴 Search for-> User-defined comment

사용자가 입력한 comment 목록 보기

Label

Label 추가 

User-defined label

마우스 메뉴 Search for-> User-defined label

사용자가 입력한 label 목록 보기 

Breakpoint

[F2]

BP(Breakpoint) 설정/해제

All referenced text strings

마우스 메뉴 Search for-> All referenced text strings

코드에서 참조되는 문자열 보기

All intermodular calls

마우스 메뉴 Search for-> All intermodular calls

코드에서 호출되는 모든 API 함수 보기

Name in all modules

마우스 메뉴 Search for->Name in all modules

모든 API 함수 보기

Edit data

Ctrl + [E] 

데이터 편집 

Assemble

[Space] 

어셈블리 코드 작성 

Copy tp executable file

마우스 메뉴 Copy to executable file

파일의 복사본 생성(변경 사항 반영됨)