1 ; Hello World Assembly Test Program (v1.0, July 6 2010)
2 ; Written by Ian Seyler
5 ; nasm hello.asm -o hello.app
9 [ORG 0x0000000000200000]
13 start: ; Start of program label
15 mov rsi
, hello_message
; Load RSI with memory address of string
16 call b_print_string
; Print the string that RSI points to
20 hello_message: db 'Hello, world!', 13, 0