; Assembler 32bit (nasm 2.14)
section .const
msg	db	'hello, world',0ah
len	equ	$ - msg

section .text
global _start
_start:
	mov	edx, len
	mov	ecx, msg
	mov	ebx, 1
	mov	eax, 04h
	int	80h

	mov	ebx, 0
	mov	eax, 01h
	int	80h
