작성
·
436
0
%include "io64.inc"
section .text
global CMAIN
CMAIN:
;write your code here
PRINT_STRING msg
xor rax, rax
ret
section .data
msg db 'Hello World', 0x00
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
Build started...
Unable to start assembler. check your settings.
지금 첫 수업인 헬로우 월드를 치고 진행하면 저렇게 셋팅 오류가 출력됩니다.
구글링을 해봤는대 세팅 하는곳에 -g를 추가해서 실행하면 된다고 되어있는대, 똑같이 진행해도 실행이 되지 않습니다. 아래는 현재 저의 빌드 세팅 내용입니다.
무엇이 문제인걸까요?
첫 수업부터 막히네요 ㅜㅜ
답변 3
0
저도 똑같은 현상이네요
[02:37:38] Warning! Errors have occurred in the build:
C:\Users\jsr\AppData\Local\Temp\SASM\program.asm:10: error: instruction not supported in 32-bit mode
gcc.exe: error: C:\Users\jsr\AppData\Local\Temp\SASM\program.o: No such file or directory
0
세팅에서 64bit로 안해주셔서 오류가 난 것 같아요!