地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2017-11-12から1日間の記事一覧

アセンブラでHello World

環境 Windows Subsystem for Linux Windows 10 Home 64bit Ubuntu ソース等 ソース msg: .ascii "hello, world\n" .globl _start _start: mov $1,%rax # write mov $1,%rdi # stdout mov $msg,%rsi # addr mov $13,%rdx # len syscall mov $60,%rax # exit m…