C++ Rookiss Part1 C++ 프로그래밍 입문 : OT
🙇♀️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를 사용 할 수 있다