Entry.S 를 컴파일하는 도중 warning이 발생하였다.

 

 

./Entry.S: Assembler messages:
./Entry.S: Warning: end of file not at end of a line; newline inserted

 

뭔소리인지 구글을 찾아봤으나 해결이 안되어 설마하고 파일 마지막 줄에 Enter를 치니 해결이 되었다.

 

 

.text
    .code 32

    .global vector_start
    .global vector_end

    vector_start:
        MOV R0, R1
    vector_end:
        .space 1024, 0
.end

 마지막줄 .end 밑에 한줄 추가하니까 warning은 보이지 않는다.

'Study(complete) > 임베디드 OS 개발 프로젝트' 카테고리의 다른 글

완료  (2) 2020.01.09
p.73 kill QEMU  (0) 2020.01.08
p.53 main.c 빌드 error  (0) 2020.01.08
p.21 arm-none-eabi-gdb 설치 에러  (2) 2020.01.07
임베디드 OS 만들기 시작~!  (0) 2020.01.07

+ Recent posts