🙇‍♀️OT

SASM 프로그램으로 어셈블리언어 공부

SASM에서 제공하는 유틸리티 함수도 사용한다

🪐Hello World

%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

실행파일로도 만들 수 있다

파일탬색기 주소창에 cmd.을 입력하면 cmd를 사용 할 수 있다

파일 구조

컴퓨터 구조

태그:

카테고리:

업데이트: