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?

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

0
Posted at

概要

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

サンプルコード

extern printf
global main
section .text

main:
	push 	rbp
	lea 	rdi, [rel fmt]
	rdrand 	rsi
	call 	printf
	xor 	eax, eax
	pop 	rbp
	ret

section .data
	fmt: db '%d', 10, 0


コンパイル、実行結果

# nasm -f elf64 r0.s

# gcc -o r0 r0.o

# ./r0
1693664114

# ./r0
16266546

# ./r0
-1834439413

# ./r0
1788016928

#

以上。

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?