I wrote this code (the file is called hello.asm):
global _main extern _printf section .text _main: push message call _printf add esp, 4 ret message: db 'Hello, World', 10, 0 But it gives errors and the message must be in segments block
How to solve them?
System: windows 7, 32 bit architecture.

C:\masm32\bin> ml.exe hello.asm- Ilnyr