메모리 목록 표시 명령
지정된 메모리 범위의 내용을 표시합니다.
구문
Debug.ListMemory [/ANSI|Unicode] [/Count:number] [/Format:formattype]
[/Hex|Signed|Unsigned] [expression]
인수
expression
선택 사항. 메모리를 표시하기 시작할 메모리 주소입니다.
스위치
/ANSI|Unicode
선택 사항. 메모리에 해당하는 문자(ANSI 또는 유니코드)로 메모리를 표시합니다.
/Count:number
선택 사항. expression
에서 시작하여 표시할 메모리의 바이트 수를 결정합니다.
/Format:formattype
선택 사항. 메모리 창에서 메모리 정보를 볼 형식(OneByte, TwoBytes, FourBytes, EightBytes, Float(32비트) 또는 Double(64비트))을 지정합니다. OneByte를 사용하는 경우 /Unicode
를 사용할 수 없습니다.
/Hex|Signed|Unsigned
선택 사항. 서명됨, 서명하지 않음 또는 16진수로 숫자를 볼 형식을 지정합니다.
설명
모든 스위치를 포함한 전체 Debug.ListMemory 명령을 작성하는 대신 특정 스위치를 지정된 값으로 미리 설정한 미리 정의된 별칭을 사용하여 명령을 호출할 수 있습니다. 예를 들어, 다음을 입력하는 대신
>Debug.ListMemory /Format:float /Count:30 /Unicode
다음과 같이 작성할 수 있습니다.
>df /Count:30 /Unicode
Debug.ListMemory 명령에 사용할 수 있는 별칭 목록은 다음과 같습니다.
Alias | 명령 및 스위치 |
---|---|
d | Debug.ListMemory |
da | Debug.ListMemory /Ansi |
db | Debug.ListMemory /Format:OneByte |
dc | Debug.ListMemory /Format:FourBytes /Ansi |
dd | Debug.ListMemory /Format:FourBytes |
df | Debug.ListMemory /Format:Float |
dq | Debug.ListMemory /Format:EightBytes |
du | Debug.ListMemory /Unicode |
예시
>Debug.ListMemory /Format:float /Count:30 /Unicode