結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | mitsuo |
提出日時 | 2018-08-01 07:18:54 |
言語 | Assembler (nasm 2.16.01) |
結果 |
RE
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 16:44:07 |
合計ジャッジ時間 | 924 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
; ref http://cs.lmu.edu/~ray/notes/nasmtutorial/ ; ---------------------------------------------------------------------------------------- ; Writes "Hello, World" to the console using only system calls. Runs on 64-bit Linux only. ; To assemble and run: ; ; nasm -felf64 hello.asm && ld hello.o && ./a.out ; ---------------------------------------------------------------------------------------- global _start section .text _start: ; write(1, message, 13) mov rax, 1 ; system call 1 is write mov rdi, 1 ; file handle 1 is stdout mov rsi, message ; address of string to output mov rdx, 13 ; number of bytes syscall ; invoke operating system to do the write message: db "Hello World!", 10 ; note the newline at the end