0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

中古ノート、買ってみた。 その61

Posted at

概要

中古ノート買ってみた。
wsl1のubuntu18.04にnasm入れてみた。
hello world、やってみた。

サンプルコード


global main
extern printf, scanf
section .text

main:
	push	rbp
	mov		rdi, fmt
	mov		rsi, msg
	mov		rax, 0
	call	printf
	pop		rbp
	mov		rax, 0
	ret

section .data
	msg: db "Hello world", 0
	fmt: db "%s", 10, 0

コンパイル、実行結果

# nasm -f elf64 p2.s

# gcc -o p2 p2.o

# ./p2
Hello world

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?