Xref: news2.mv.net comp.os.msdos.djgpp:8633 From: takahiro AT ix DOT netcom DOT com (Takahiro Horie) Newsgroups: comp.os.msdos.djgpp Subject: New to DJASM/AS: Doesn't Compile! Date: 15 Sep 1996 09:53:45 GMT Organization: Netcom Lines: 58 Message-ID: <51gjn9$j96@sjx-ixn2.ix.netcom.com> NNTP-Posting-Host: sjx-ca9-10.ix.netcom.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Thanks for taking a look at my problem! When I compile this source, I get massive amounts of errors. I am using the command: as djhello.asm -[source]-------------------------------------------------------------- .model small .stack .code start: JMP begin MyMessage db "Compiled with D.J. Delorie ASM.$" begin: MOVw OFFSET MyMessage, %dx MOVw SEG MyMessage, %ax MOVw %ax,%ds MOVb $9,%ah int 21h MOVw $4c00h,%ax int 21h END start; ----------------------------------------------------------------------- -[compile errors]------------------------------------------------------ djhello.asm: Assembler messages: djhello.asm:1: Error: Unknown pseudo-op: `.model' djhello.asm:2: Error: Unknown pseudo-op: `.stack' djhello.asm:3: Error: Unknown pseudo-op: `.code' djhello.asm:7: Error: no such 386 instruction `mymessage' djhello.asm:10: Error: Ignoring junk 'MyMessage' after expression djhello.asm:11: Error: Ignoring junk 'MyMessage' after expression djhello.asm:14: Error: Ignoring junk 'h' after expression djhello.asm:14: Error: operands given don't match any known 386 instruction djhello.asm:17: Error: Ignoring junk 'h' after expression djhello.asm:17: Error: operands given don't match any known 386 instruction djhello.asm:18: Error: no such 386 instruction: `end' ----------------------------------------------------------------------- I'm sorry about such a long message, but I wanted to get the best response to my query as possible. I also understand this is very simple code, but as an intermediate programmer it puzzles me well. Thank you VERY much in advance, Takahiro Horie (takahiro AT ix DOT netcom DOT com)