From 9c34c41a7aaef6880b51d107d625c866c2b17996 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9D=B4=EC=9E=A5=EC=9B=90?= <wkddnjs3268@ajou.ac.kr>
Date: Fri, 7 Aug 2020 06:10:10 +0900
Subject: [PATCH] Update README.md

---
 8.6/README.md | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/8.6/README.md b/8.6/README.md
index 416f0da..fc35cc2 100644
--- a/8.6/README.md
+++ b/8.6/README.md
@@ -34,7 +34,6 @@
 	```
 	$ gcc -o 00.option-o 00.option-o.c
 	```
-	![o](https://git.ajou.ac.kr/leejangwon/battle_c/-/blob/master/Images/o.png)
 	![o](../Images/o.png)
 * -E
 	전처리하여 전처리된 소스 파일(.i)을 생성
@@ -46,45 +45,45 @@
 	$ gcc -E 01.option-E.c > 01.option-E.i
 	```
 	리디렉션으로 .i 생성
-	img
+	![E](../Images/E.png)
 * -S
 	컴파일하여 어셈블리 파일(.s)을 생성
 	```
 	$ gcc -S 02.option-S.i
 	```
 	.s 생성(.i 없어도 가능)
-	img
+	![S](../Images/S.png)
 * -c
 	어셈블하여 목적 파일(.o)을 생성
 	```
 	$ gcc -c 03.option-c.s
 	```
 	.o 생성(.i나 .s 없어도 가능)
-	img
+	![c](../Images/c.png)
 * -D
 	외부에서 매크로를 define
 	```
 	$ gcc -DNO 05.option-D.c
 	```
-	img
+	![D](../Images/D.png)
 * -g
 	운영체제 고유의 형식으로 디버깅 정보를 만듦
 	```
 	$ gcc -g 06.option-g.c
 	```
-	img
+	![g_Raspberry_Pi](../Images/g_Raspberry_Pi.png)
 	on Raspberry Pi
-	img
+	![g_Git_Bash](../Images/g_Git_Bash.png)
 	on Git Bash
 * -Wall
 	GCC가 제공할 수 있고, 일반적으로 유용한 모든 경고 메시지 출력
 	```
 	$ gcc -Wall 07.option-Wall.c
 	```
-	img
+	![Wall](../Images/Wall.png)
 * -I(upper case of i)
 	헤더 파일을 검색할 디렉터리를 추가
 	```
 	$ gcc -ImyInclude 09.option-I.c
 	```
-	img
\ No newline at end of file
+	![I](../Images/I.png)
\ No newline at end of file
-- 
GitLab