i am starting to learn assembly,
but i am getting really frustrated !!!!!!!!!!!

the problem is with the assembler !!!

nthn seems right !!!

i have downloaded four assemblers so far, but
none seems to work fine !!!!

one is called a86, masm32v8, RadASM, AsmStudio.

well, all the examples wont assemble, syntax error are found.
if nnot link errors occur, especially "unresolved external symbol _mainCRTStartup"
this sucks guys !!!!!!

ok, lets say i just want the example in the FAQ to work:
Code:
	jmp	start
Message1	db "Hello World!$"

start:
	mov	ah, 09h
	mov	dx, offset Message1
	int	21h

	mov	ax, 4c00h
	int	21h
well, it worked once on a86, but nthn else worked.
also i am using RadASM most of the time,
how can i get that code to work on that assembler ???!

for god's sake just one thing that assembles and link !!!

i am taking aoa.pdf tutorial seriously, but cannot make any example
work ... what is the recommended assembler for that tutorial ???