SlideShare a Scribd company logo
1 of 63
Download to read offline
Visual Studio를 이용한
어셈블리어 학습 part 2
유영천
https://megayuchi.com
tw: @dgtman
X64 어셈블리어 사용
주요 변경점
• 각 레지스터의 32Bits -> 64Bits 확장
• 스택 기본 단위 64Bits(8Bytes)
• 64Bits 주소 지정
• R8 – R15 레지스터 추가
• XMM8 – XMM15 레지스터 추가
• 기본 Calling convention – fastcall(x86와 x64의 fastcall은 다름)
Visual Studio 에서 x64어셈블리어 사용하기
• 슬프게도 x64모드로는 inline 어셈블리어가 지원되지 않는다.
• MASM의 64bits 버전인 ml64.exe를 혼용한다.
• 약간의 수고만 들이면 쉽게 Visual Studio IDE에 통합된다. ->
디버깅 가능!!!
Visual Studio 에서 x64어셈블리어 사용하기
• Project -> Build Customization -> masm항목에 체크
• .asm파일을 Drag & Drop, 또는 new 로 .asm파일 추가.
• .asm파일의 property -> Item Type -> Microsoft Macro Assembler
• 필요한 경우 listing file 설정
Project -> Build Customization -> masm항목에 체크
.asm파일을 Drag & Drop, 또는 new 로 .asm파일 추가.
.asm파일의 property -> Item Type -> Microsoft Macro Assembler
Listing File
• 완전한 실제 asm코드로 보여줌.
• 가상화(?)된 변수들의 실제 주소지정 코드를 확인 할 수
있다.
• Property-> Macro Assembler -> Listing File
• List All Available Information : Yes
• Enable Assembly Generated Code Listing : Yes
• Assembled Code Listing File : $(OutDir)%(Filename).asm
Visual Studio에서의 x64어셈블리어 코딩
• 함수 단위로 작성.
• Disassembly Window와 .asm코드 에디터 양쪽 모두에서 브레이크
포인트를 찍어가며 디버깅 가능.
• Cpp코드에서의 호출을 위해 .asm의 함수를 선언할때는 extern
"C" 로 선언할것.
• x86/x64/ARM64를 함께 지원하는 프로젝트일 경우
• 각 아키텍처별 코드를 각각의 .asm또는 .cpp로 작성.
• 아키텍처별로 다른 아키텍처의 .asm/.cpp 파일의 property에서
excluded from build : yes로 설정
.CODE
Add_ASM PROC
mov [rsp+8],rcx
mov [rsp+16],rdx
add rcx,rdx
mov rax,rcx
ret
Add_ASM ENDP
END
Add_ASM()함수의 시작
Add_ASM()함수의 끝
.asm파일 작성
.asm의 함수를 호출하기 위한 선언
extern "C"
{
INT64 Add_ASM(INT64 a, INT64 b);
INT64 Add_ASM_RBP(INT64 a, INT64 b);
}
masm으로 생성된 함수명을 C++코드에서 호출하기 위해서는 해당 함수명이 C타입
의 Name Decoration을 사용해야한다.
x64 레지스터와 스택
Register Status Use
RAX Volatile Return value register
RCX Volatile First integer argument
RDX Volatile Second integer argument
R8 Volatile Third integer argument
R9 Volatile Fourth integer argument
R10:R11 Volatile Must be preserved as needed by caller; used in syscall/sysret instructions
R12:R15 Nonvolatile Must be preserved by callee
RDI Nonvolatile Must be preserved by callee
RSI Nonvolatile Must be preserved by callee
RBX Nonvolatile Must be preserved by callee
RBP Nonvolatile May be used as a frame pointer; must be preserved by callee
RSP Nonvolatile Stack pointer
XMM0, YMM0 Volatile First FP argument; first vector-type argument when __vectorcall is used
XMM1, YMM1 Volatile Second FP argument; second vector-type argument when __vectorcall is used
XMM2, YMM2 Volatile Third FP argument; third vector-type argument when __vectorcall is used
XMM3, YMM3 Volatile Fourth FP argument; fourth vector-type argument when __vectorcall is used
XMM4, YMM4 Volatile Must be preserved as needed by caller; fifth vector-type argument
when __vectorcall is used
XMM5, YMM5 Volatile Must be preserved as needed by caller; sixth vector-type argument
when __vectorcall is used
XMM6:XMM15,
YMM6:YMM15
Nonvolatile (XMM), Volatile (upper half of
YMM)
Must be preserved by callee. YMM registers must be preserved as needed by
caller.
Registers
파라미터 전달
Parameter type fifth and
higher
fourth third second leftmost
floating-point stack XMM3 XMM2 XMM1 XMM0
integer stack R9 R8 RDX RCX
Aggregates (8, 16, 32, or 64 bits)
and __m64
stack R9 R8 RDX RCX
Other aggregates, as pointers stack R9 R8 RDX RCX
__m128, as a pointer stack R9 R8 RDX RCX
스택 프레임
• 베이스 포인터 레지스터(RBP) 사용이 calling convention의 일부가
아님.
• VC++의 디버그 빌드(C/C++), ml64에서 local지시어를 이용한
변수명 사용시 베이스 포인터 레지스터(RBP) 사용.
• 다른 함수를 호출할 경우 stack pointer(RSP레지스터의 값)주소가
16 Bytes align 되도록 할것!!!!
• 함수 호출 전 rsp레지스터의 값을 16으로 나눠서 나머지가 0인지 확인
• 직접 작성한 asm함수 안에서 로컬변수 할당 사이즈는 16 bytes의 배수로
맞춘다.
x64 stack usage | Microsoft Docs
함수호출
• Caller
• 파라미터를 push하는 대신 4개까지는 rcx, rdx, r8, r9 레지스터로 전달.
• 함수 호출시 home arg area 확보 32bytes -> sub rsp,32
• 4개 초과분에 대해서는 rsp레지스터를 직접 조정(sub rsp,xxx)한 후 [rsp+
xxxx] 메모리에 카피
• Callee
• 진입시 rcx,rdx,r8,r9레지스터를 arg home area에 카피 (디버거에서
파라미터 내용 확인할거 아니면 필요없음)
• 로컬변수 사용영역을 확보
• 8bytes 변수 4개 사용시 8x4 = 32 bytes - sub rsp, 32 ( 16 Bytes Align에 주의!)
void Test()
{
INT64 c = Add_C(1, 2);
}
INT64 Add_C(INT64 a, INT64 b)
{
INT64 c = a + b;
return c;
}
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C (0140001050h)
mov qword ptr [c],rax
add rsp,38h
ret
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b]
mov rcx,qword ptr [a]
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
add rsp,18h
ret
x64 calling convention,
C/C++에서 C/C++함수 호출
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
AsmTest64.exe!Add_C(__int64, __int64):
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
AsmTest64.exe!Add_C(__int64, __int64):
arg : b
arg : a
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
AsmTest64.exe!Add_C(__int64, __int64):
arg : b
arg : a
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
Return Address
arg : b
arg : a
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
Return Address
arg : b
arg : a
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx Return Address
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
Return Address
16Bytes align
local : c
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
Return Address
local : c
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
local : c
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
Return Address
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
local : c
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
Return Address
Caller
Callee
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
local : c
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
add rsp,18h
Return Address
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
add rsp,18h
ret
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
local : c
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
mov qword ptr [c],rax
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
add rsp,18h
ret
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
arg : b
arg : a
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
local : c
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
mov qword ptr [c],rax
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
add rsp,18h
ret
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014fe70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_C
mov qword ptr [c],rax
add rsp,38h
ret
AsmTest64.exe!Add_C(__int64, __int64):
mov qword ptr [rsp+10h],rdx
mov qword ptr [rsp+8],rcx
sub rsp,18h
mov rax,qword ptr [b] ; rsp+40
mov rcx,qword ptr [a] ; rsp+32
add rcx,rax
mov rax,rcx
mov qword ptr [rsp],rax
mov rax,qword ptr [rsp]
add rsp,18h
ret
Caller
X64어셈블리어 prologue, epilogue
• x86함수와 비교
• 베이스 포인터 사용이 기본은 아니다.
• 함수 내부에서 편리하게 사용하고 싶으면 베이스 포인터를
사용한다.
assembled code
asm code in MASM
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFF8h
mov qword ptr [rbp+16],rcx
mov qword ptr [rbp+24],rdx
add rcx,rdx
mov qword ptr [rbp-8],rcx
mov rax,qword ptr [rbp-8]
leave
ret
Add_ASM_RBP PROC a:QWORD, b:QWORD
LOCAL c:QWORD
mov a,rcx
mov b,rdx
add rcx,rdx
mov c, rcx
mov rax,c
ret
Add_ASM_RBP ENDP
MASM에서의 Stack Frame 자동생성
void Test()
{
INT64 c = Add_ASM_RBP(1, 2);
}
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
mov qword ptr [c],rax
add rsp,38h
ret
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx
mov qword ptr [b],rdx
add rcx,rdx
mov qword ptr [c],rcx
mov rax,qword ptr [c]
leave
ret
Add_ASM_RBP PROC a:QWORD, b:QWORD
LOCAL c:QWORD
LOCAL d:QWORD
LOCAL e:QWORD
LOCAL f:QWORD
mov a,rcx
mov b,rdx
add rcx,rdx
mov c, rcx
mov rax,c
ret
Add_ASM_RBP ENDP
x64 calling convention,
C/C++에서 asm함수 호출
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
rsp
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
arg : a
arg : b
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD): rsp
arg : a
arg : b
Caller
Callee
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
rsp
Return Address
arg : a
arg : b
Caller
Callee
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
rsp
Return Address
backup rbp
arg : a
arg : b
Caller
Callee
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
rsp
backup rbp
Return Address
rbp
arg : a
arg : b
Caller
Callee
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
backup rbp
Return Address
rbp
rsp
local : c
local : d
local : e
local : f
arg : a
arg : b
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
backup rbp
Return Address
rbp
arg : a
rsp
local : c
local : d
local : e
local : f
arg : b
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
backup rbp
Return Address
rbp
arg : a
arg : b
rsp
local : c
local : d
local : e
local : f
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
backup rbp
Return Address
rbp
arg : a
arg : b
rsp
local : c
local : d
local : e
local : f
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
backup rbp
Return Address
rbp
arg : a
arg : b
rsp
local : c
local : d
local : e
local : f
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
mov rax,qword ptr [c]
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
backup rbp
Return Address
rbp
arg : a
arg : b
local : c
local : d
local : e
local : f rsp
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
mov rax,qword ptr [c]
leave (mov rsp,rbp)
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
backup rbp
Return Address
arg : a
arg : b
rsp rbp
local : c
local : d
local : e
local : f
Caller
Callee
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
mov rax,qword ptr [c]
leave (pop rbp)
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
Return Address
arg : a
arg : b
rsp
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
mov rax,qword ptr [c]
leave
ret
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
arg : a
arg : b
rsp
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
mov dword ptr [c],eax
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
mov rax,qword ptr [c]
leave
ret
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
arg : a
arg : b
rsp
local : c
AsmTest64.exe!Test(void):
sub rsp,38h
mov edx,2
mov ecx,1
call Add_ASM_RBP
mov dword ptr [c],eax
add rsp,38h
ret
AsmTest64.exe! Add_ASM_RBP(QWORD, QWORD):
push rbp
mov rbp,rsp
add rsp,0FFFFFFFFFFFFFFE0h
mov qword ptr [a],rcx ; rbp+16
mov qword ptr [b],rdx ; rbp+24
add rcx,rdx
mov qword ptr [c],rcx ; rbp-8
mov rax,qword ptr [c]
leave
ret
0x000000000014feb8
0x000000000014feb0
0x000000000014fea8
0x000000000014fea0
0x000000000014fe98
0x000000000014fe90
0x000000000014fe88
0x000000000014fe80
0x000000000014fe78
0x000000000014ff70
0x000000000014fe68
0x000000000014fe60
0x000000000014fe58
0x000000000014fe50
rsp
asm에서 다른 함수 호출
1. rcx,rdx,r8,r9에 4개의 파라미터 카피
2. 파라미터 개수 4개 초과일 경우
1. 추가로 전달할 파라미터 사이즈만큼 RSP레지스터의 값을 빼준다.
2. RSP의 주소로부터 높은 주소로 진행하며 파라미터를 스택에 카피
3. 파라미터 전달용 스택 메모리(arg home area)를 확보해준다.
1. arg home area를 위해 sub rsp,32
2. 호출 전 rsp레지스터의 값이 16의 배수여야 한다.
호출할 함수 선언
• CRT함수나 win32 API함수 호출시 추가적인 선언 필요
fscanf PROTO
strlen PROTO
memcpy PROTO
rand PROTO
MessageBoxA PROTO
함수호출 예제
• 16 Byte Align 규칙 위반 테스트
구조체 사용
VECTOR4 STRUCT
x REAL4 ?
y REAL4 ?
z REAL4 ?
w REAL4 ?
VECTOR4 ENDS
VECTOR4_SIZE EQU 16
코드 샘플
비교 및 치환
vector x matrix
가변인자 함수 호출
가상함수 호출 분석
Reference
• x64 소프트웨어 규칙 | Microsoft Docs
• Rules and Limitations for Naked Functions | Microsoft Docs
• Introduction to x64 Assembly (intel.com)

More Related Content

What's hot

중앙 서버 없는 게임 로직
중앙 서버 없는 게임 로직중앙 서버 없는 게임 로직
중앙 서버 없는 게임 로직Hoyoung Choi
 
[NDC2016] TERA 서버의 Modern C++ 활용기
[NDC2016] TERA 서버의 Modern C++ 활용기[NDC2016] TERA 서버의 Modern C++ 활용기
[NDC2016] TERA 서버의 Modern C++ 활용기Sang Heon Lee
 
[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기
[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기
[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기MinGeun Park
 
Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)
Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)
Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)Esun Kim
 
MMOG Server-Side 충돌 및 이동처리 설계와 구현
MMOG Server-Side 충돌 및 이동처리 설계와 구현MMOG Server-Side 충돌 및 이동처리 설계와 구현
MMOG Server-Side 충돌 및 이동처리 설계와 구현YEONG-CHEON YOU
 
사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)
사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)
사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)Seungmo Koo
 
Python 게임서버 안녕하십니까 : RPC framework 편
Python 게임서버 안녕하십니까 : RPC framework 편Python 게임서버 안녕하십니까 : RPC framework 편
Python 게임서버 안녕하십니까 : RPC framework 편준철 박
 
송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010devCAT Studio, NEXON
 
KGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games Conference
KGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games ConferenceKGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games Conference
KGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games ConferenceXionglong Jin
 
임태현, 게임 서버 디자인 가이드, NDC2013
임태현, 게임 서버 디자인 가이드, NDC2013임태현, 게임 서버 디자인 가이드, NDC2013
임태현, 게임 서버 디자인 가이드, NDC2013devCAT Studio, NEXON
 
Windows Registered I/O (RIO) vs IOCP
Windows Registered I/O (RIO) vs IOCPWindows Registered I/O (RIO) vs IOCP
Windows Registered I/O (RIO) vs IOCPSeungmo Koo
 
테라로 살펴본 MMORPG의 논타겟팅 시스템
테라로 살펴본 MMORPG의 논타겟팅 시스템테라로 살펴본 MMORPG의 논타겟팅 시스템
테라로 살펴본 MMORPG의 논타겟팅 시스템QooJuice
 
게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델
게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델
게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델Seungmo Koo
 
빠른 렌더링을 위한 오브젝트 제외 기술
빠른 렌더링을 위한 오브젝트 제외 기술빠른 렌더링을 위한 오브젝트 제외 기술
빠른 렌더링을 위한 오브젝트 제외 기술YEONG-CHEON YOU
 
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들영욱 오
 
프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법
프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법
프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법YEONG-CHEON YOU
 
레퍼런스만 알면 언리얼 엔진이 제대로 보인다
레퍼런스만 알면 언리얼 엔진이 제대로 보인다레퍼런스만 알면 언리얼 엔진이 제대로 보인다
레퍼런스만 알면 언리얼 엔진이 제대로 보인다Lee Dustin
 
[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버
[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버
[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버Heungsub Lee
 
Ndc14 분산 서버 구축의 ABC
Ndc14 분산 서버 구축의 ABCNdc14 분산 서버 구축의 ABC
Ndc14 분산 서버 구축의 ABCHo Gyu Lee
 
GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리
GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리
GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리YEONG-CHEON YOU
 

What's hot (20)

중앙 서버 없는 게임 로직
중앙 서버 없는 게임 로직중앙 서버 없는 게임 로직
중앙 서버 없는 게임 로직
 
[NDC2016] TERA 서버의 Modern C++ 활용기
[NDC2016] TERA 서버의 Modern C++ 활용기[NDC2016] TERA 서버의 Modern C++ 활용기
[NDC2016] TERA 서버의 Modern C++ 활용기
 
[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기
[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기
[150124 박민근] 모바일 게임 개발에서 루아 스크립트 활용하기
 
Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)
Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)
Akka.NET 으로 만드는 온라인 게임 서버 (NDC2016)
 
MMOG Server-Side 충돌 및 이동처리 설계와 구현
MMOG Server-Side 충돌 및 이동처리 설계와 구현MMOG Server-Side 충돌 및 이동처리 설계와 구현
MMOG Server-Side 충돌 및 이동처리 설계와 구현
 
사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)
사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)
사설 서버를 막는 방법들 (프리섭, 더이상은 Naver)
 
Python 게임서버 안녕하십니까 : RPC framework 편
Python 게임서버 안녕하십니까 : RPC framework 편Python 게임서버 안녕하십니까 : RPC framework 편
Python 게임서버 안녕하십니까 : RPC framework 편
 
송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010
 
KGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games Conference
KGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games ConferenceKGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games Conference
KGC 2016: HTTPS 로 모바일 게임 서버 구축한다는 것 - Korea Games Conference
 
임태현, 게임 서버 디자인 가이드, NDC2013
임태현, 게임 서버 디자인 가이드, NDC2013임태현, 게임 서버 디자인 가이드, NDC2013
임태현, 게임 서버 디자인 가이드, NDC2013
 
Windows Registered I/O (RIO) vs IOCP
Windows Registered I/O (RIO) vs IOCPWindows Registered I/O (RIO) vs IOCP
Windows Registered I/O (RIO) vs IOCP
 
테라로 살펴본 MMORPG의 논타겟팅 시스템
테라로 살펴본 MMORPG의 논타겟팅 시스템테라로 살펴본 MMORPG의 논타겟팅 시스템
테라로 살펴본 MMORPG의 논타겟팅 시스템
 
게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델
게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델
게임서버프로그래밍 #0 - TCP 및 이벤트 통지모델
 
빠른 렌더링을 위한 오브젝트 제외 기술
빠른 렌더링을 위한 오브젝트 제외 기술빠른 렌더링을 위한 오브젝트 제외 기술
빠른 렌더링을 위한 오브젝트 제외 기술
 
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
NDC2017 언리얼엔진4 디버깅 101 - 게임 기획자, 프로그래머가 버그와 만났을 때 사용할 수 있는 지침들
 
프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법
프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법
프레임레이트 향상을 위한 공간분할 및 오브젝트 컬링 기법
 
레퍼런스만 알면 언리얼 엔진이 제대로 보인다
레퍼런스만 알면 언리얼 엔진이 제대로 보인다레퍼런스만 알면 언리얼 엔진이 제대로 보인다
레퍼런스만 알면 언리얼 엔진이 제대로 보인다
 
[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버
[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버
[야생의 땅: 듀랑고] 서버 아키텍처 - SPOF 없는 분산 MMORPG 서버
 
Ndc14 분산 서버 구축의 ABC
Ndc14 분산 서버 구축의 ABCNdc14 분산 서버 구축의 ABC
Ndc14 분산 서버 구축의 ABC
 
GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리
GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리
GPGPU(CUDA)를 이용한 MMOG 캐릭터 충돌처리
 

Similar to Visual Studio를 이용한 어셈블리어 학습 part 2

Implement an MPI program to perform matrix-matrix multiplication AB .pdf
Implement an MPI program to perform matrix-matrix multiplication AB .pdfImplement an MPI program to perform matrix-matrix multiplication AB .pdf
Implement an MPI program to perform matrix-matrix multiplication AB .pdfmeerobertsonheyde608
 
Mac osx 64_rop_chains
Mac osx 64_rop_chainsMac osx 64_rop_chains
Mac osx 64_rop_chainsRahul Sasi
 
Scale17x buffer overflows
Scale17x buffer overflowsScale17x buffer overflows
Scale17x buffer overflowsjohseg
 
Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2
Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2
Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2PVS-Studio
 
WCTF 2018 binja Editorial
WCTF 2018 binja EditorialWCTF 2018 binja Editorial
WCTF 2018 binja EditorialCharo_IT
 
Make ARM Shellcode Great Again - HITB2018PEK
Make ARM Shellcode Great Again - HITB2018PEKMake ARM Shellcode Great Again - HITB2018PEK
Make ARM Shellcode Great Again - HITB2018PEKSaumil Shah
 
Jumping into heaven’s gate
Jumping into heaven’s gateJumping into heaven’s gate
Jumping into heaven’s gateYarden Shafir
 
Architecture innovations in POWER ISA v3.01 and POWER10
Architecture innovations in POWER ISA v3.01 and POWER10Architecture innovations in POWER ISA v3.01 and POWER10
Architecture innovations in POWER ISA v3.01 and POWER10Ganesan Narayanasamy
 
The reasons why 64-bit programs require more stack memory
The reasons why 64-bit programs require more stack memoryThe reasons why 64-bit programs require more stack memory
The reasons why 64-bit programs require more stack memoryPVS-Studio
 
Haskell Symposium 2010: An LLVM backend for GHC
Haskell Symposium 2010: An LLVM backend for GHCHaskell Symposium 2010: An LLVM backend for GHC
Haskell Symposium 2010: An LLVM backend for GHCdterei
 
Virtual Machine for Regular Expressions
Virtual Machine for Regular ExpressionsVirtual Machine for Regular Expressions
Virtual Machine for Regular ExpressionsAlexander Yakushev
 
Hardware assited x86 emulation on godson 3
Hardware assited x86 emulation on godson 3Hardware assited x86 emulation on godson 3
Hardware assited x86 emulation on godson 3Takuya ASADA
 
LLVM Backend Porting
LLVM Backend PortingLLVM Backend Porting
LLVM Backend PortingShiva Chen
 

Similar to Visual Studio를 이용한 어셈블리어 학습 part 2 (20)

Implement an MPI program to perform matrix-matrix multiplication AB .pdf
Implement an MPI program to perform matrix-matrix multiplication AB .pdfImplement an MPI program to perform matrix-matrix multiplication AB .pdf
Implement an MPI program to perform matrix-matrix multiplication AB .pdf
 
Mac osx 64_rop_chains
Mac osx 64_rop_chainsMac osx 64_rop_chains
Mac osx 64_rop_chains
 
A Close Look at ARM Code Size
A Close Look at ARM Code SizeA Close Look at ARM Code Size
A Close Look at ARM Code Size
 
Scale17x buffer overflows
Scale17x buffer overflowsScale17x buffer overflows
Scale17x buffer overflows
 
Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2
Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2
Analysis of Haiku Operating System (BeOS Family) by PVS-Studio. Part 2
 
WCTF 2018 binja Editorial
WCTF 2018 binja EditorialWCTF 2018 binja Editorial
WCTF 2018 binja Editorial
 
80x86_2.pdf
80x86_2.pdf80x86_2.pdf
80x86_2.pdf
 
Make ARM Shellcode Great Again - HITB2018PEK
Make ARM Shellcode Great Again - HITB2018PEKMake ARM Shellcode Great Again - HITB2018PEK
Make ARM Shellcode Great Again - HITB2018PEK
 
Jumping into heaven’s gate
Jumping into heaven’s gateJumping into heaven’s gate
Jumping into heaven’s gate
 
Architecture innovations in POWER ISA v3.01 and POWER10
Architecture innovations in POWER ISA v3.01 and POWER10Architecture innovations in POWER ISA v3.01 and POWER10
Architecture innovations in POWER ISA v3.01 and POWER10
 
The reasons why 64-bit programs require more stack memory
The reasons why 64-bit programs require more stack memoryThe reasons why 64-bit programs require more stack memory
The reasons why 64-bit programs require more stack memory
 
Haskell Symposium 2010: An LLVM backend for GHC
Haskell Symposium 2010: An LLVM backend for GHCHaskell Symposium 2010: An LLVM backend for GHC
Haskell Symposium 2010: An LLVM backend for GHC
 
Embedded C programming session10
Embedded C programming  session10Embedded C programming  session10
Embedded C programming session10
 
Advance ROP Attacks
Advance ROP AttacksAdvance ROP Attacks
Advance ROP Attacks
 
R and C++
R and C++R and C++
R and C++
 
C programming session10
C programming  session10C programming  session10
C programming session10
 
Virtual Machine for Regular Expressions
Virtual Machine for Regular ExpressionsVirtual Machine for Regular Expressions
Virtual Machine for Regular Expressions
 
Hardware assited x86 emulation on godson 3
Hardware assited x86 emulation on godson 3Hardware assited x86 emulation on godson 3
Hardware assited x86 emulation on godson 3
 
swrp141.pdf
swrp141.pdfswrp141.pdf
swrp141.pdf
 
LLVM Backend Porting
LLVM Backend PortingLLVM Backend Porting
LLVM Backend Porting
 

More from YEONG-CHEON YOU

DirectStroage프로그래밍소개
DirectStroage프로그래밍소개DirectStroage프로그래밍소개
DirectStroage프로그래밍소개YEONG-CHEON YOU
 
CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트
CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트
CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트YEONG-CHEON YOU
 
나만의 엔진 개발하기
나만의 엔진 개발하기나만의 엔진 개발하기
나만의 엔진 개발하기YEONG-CHEON YOU
 
XDK없이 XBOX게임 개발하기(UWP on XBOX)
XDK없이 XBOX게임 개발하기(UWP on XBOX)XDK없이 XBOX게임 개발하기(UWP on XBOX)
XDK없이 XBOX게임 개발하기(UWP on XBOX)YEONG-CHEON YOU
 
Introduction to DirectX 12 Programming , Ver 1.5
Introduction to DirectX 12 Programming , Ver 1.5Introduction to DirectX 12 Programming , Ver 1.5
Introduction to DirectX 12 Programming , Ver 1.5YEONG-CHEON YOU
 
실시간 게임 서버 최적화 전략
실시간 게임 서버 최적화 전략실시간 게임 서버 최적화 전략
실시간 게임 서버 최적화 전략YEONG-CHEON YOU
 
Voxel based game_optimazation_relelase
Voxel based game_optimazation_relelaseVoxel based game_optimazation_relelase
Voxel based game_optimazation_relelaseYEONG-CHEON YOU
 
CUDA를 게임 프로젝트에 적용하기
CUDA를 게임 프로젝트에 적용하기CUDA를 게임 프로젝트에 적용하기
CUDA를 게임 프로젝트에 적용하기YEONG-CHEON YOU
 
서버와 클라이언트 같은 엔진 사용하기
서버와 클라이언트 같은 엔진 사용하기서버와 클라이언트 같은 엔진 사용하기
서버와 클라이언트 같은 엔진 사용하기YEONG-CHEON YOU
 
win32 app에서 UWP API호출하기
win32 app에서 UWP API호출하기win32 app에서 UWP API호출하기
win32 app에서 UWP API호출하기YEONG-CHEON YOU
 
Azure로 MMO게임 서비스하기
Azure로 MMO게임 서비스하기Azure로 MMO게임 서비스하기
Azure로 MMO게임 서비스하기YEONG-CHEON YOU
 
Development AR App with C++ and Windows Holographic API
Development AR App with C++ and Windows Holographic APIDevelopment AR App with C++ and Windows Holographic API
Development AR App with C++ and Windows Holographic APIYEONG-CHEON YOU
 
빌드관리 및 디버깅 (2010년 자료)
빌드관리 및 디버깅 (2010년 자료)빌드관리 및 디버깅 (2010년 자료)
빌드관리 및 디버깅 (2010년 자료)YEONG-CHEON YOU
 
Tips and experience_of_dx12_engine_development._ver_1.2
Tips and experience_of_dx12_engine_development._ver_1.2Tips and experience_of_dx12_engine_development._ver_1.2
Tips and experience_of_dx12_engine_development._ver_1.2YEONG-CHEON YOU
 
Implements Cascaded Shadow Maps with using Texture Array
Implements Cascaded Shadow Maps with using Texture ArrayImplements Cascaded Shadow Maps with using Texture Array
Implements Cascaded Shadow Maps with using Texture ArrayYEONG-CHEON YOU
 
Tips and experience of DX12 Engine development .
Tips and experience of DX12 Engine development .Tips and experience of DX12 Engine development .
Tips and experience of DX12 Engine development .YEONG-CHEON YOU
 
Porting direct x 11 desktop game to uwp app
Porting direct x 11 desktop game to uwp appPorting direct x 11 desktop game to uwp app
Porting direct x 11 desktop game to uwp appYEONG-CHEON YOU
 
프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~
프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~
프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~YEONG-CHEON YOU
 

More from YEONG-CHEON YOU (20)

DirectStroage프로그래밍소개
DirectStroage프로그래밍소개DirectStroage프로그래밍소개
DirectStroage프로그래밍소개
 
CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트
CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트
CUDA Raytracing을 이용한 Voxel오브젝트 가시성 테스트
 
나만의 엔진 개발하기
나만의 엔진 개발하기나만의 엔진 개발하기
나만의 엔진 개발하기
 
XDK없이 XBOX게임 개발하기(UWP on XBOX)
XDK없이 XBOX게임 개발하기(UWP on XBOX)XDK없이 XBOX게임 개발하기(UWP on XBOX)
XDK없이 XBOX게임 개발하기(UWP on XBOX)
 
Introduction to DirectX 12 Programming , Ver 1.5
Introduction to DirectX 12 Programming , Ver 1.5Introduction to DirectX 12 Programming , Ver 1.5
Introduction to DirectX 12 Programming , Ver 1.5
 
실시간 게임 서버 최적화 전략
실시간 게임 서버 최적화 전략실시간 게임 서버 최적화 전략
실시간 게임 서버 최적화 전략
 
Voxelizaition with GPU
Voxelizaition with GPUVoxelizaition with GPU
Voxelizaition with GPU
 
Voxel based game_optimazation_relelase
Voxel based game_optimazation_relelaseVoxel based game_optimazation_relelase
Voxel based game_optimazation_relelase
 
Sw occlusion culling
Sw occlusion cullingSw occlusion culling
Sw occlusion culling
 
CUDA를 게임 프로젝트에 적용하기
CUDA를 게임 프로젝트에 적용하기CUDA를 게임 프로젝트에 적용하기
CUDA를 게임 프로젝트에 적용하기
 
서버와 클라이언트 같은 엔진 사용하기
서버와 클라이언트 같은 엔진 사용하기서버와 클라이언트 같은 엔진 사용하기
서버와 클라이언트 같은 엔진 사용하기
 
win32 app에서 UWP API호출하기
win32 app에서 UWP API호출하기win32 app에서 UWP API호출하기
win32 app에서 UWP API호출하기
 
Azure로 MMO게임 서비스하기
Azure로 MMO게임 서비스하기Azure로 MMO게임 서비스하기
Azure로 MMO게임 서비스하기
 
Development AR App with C++ and Windows Holographic API
Development AR App with C++ and Windows Holographic APIDevelopment AR App with C++ and Windows Holographic API
Development AR App with C++ and Windows Holographic API
 
빌드관리 및 디버깅 (2010년 자료)
빌드관리 및 디버깅 (2010년 자료)빌드관리 및 디버깅 (2010년 자료)
빌드관리 및 디버깅 (2010년 자료)
 
Tips and experience_of_dx12_engine_development._ver_1.2
Tips and experience_of_dx12_engine_development._ver_1.2Tips and experience_of_dx12_engine_development._ver_1.2
Tips and experience_of_dx12_engine_development._ver_1.2
 
Implements Cascaded Shadow Maps with using Texture Array
Implements Cascaded Shadow Maps with using Texture ArrayImplements Cascaded Shadow Maps with using Texture Array
Implements Cascaded Shadow Maps with using Texture Array
 
Tips and experience of DX12 Engine development .
Tips and experience of DX12 Engine development .Tips and experience of DX12 Engine development .
Tips and experience of DX12 Engine development .
 
Porting direct x 11 desktop game to uwp app
Porting direct x 11 desktop game to uwp appPorting direct x 11 desktop game to uwp app
Porting direct x 11 desktop game to uwp app
 
프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~
프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~
프로그래밍 언어의 F1머신 C++을 타고 Windows 10 UWP 앱 개발의 세계로~
 

Recently uploaded

call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdfPearlKirahMaeRagusta1
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...Nitya salvi
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 

Recently uploaded (20)

call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 

Visual Studio를 이용한 어셈블리어 학습 part 2