Multiple Failures While Attempting to Compile Assembly Code

On the QNXRTP, I am currenty trying to compiler an assembly code file which
worked under QNX4. The compiler seems to be failing on every line in my
file, so something must be setup wrong.

Here is the first few lines of the code file:

; Copyright 1999 (c)
; Acme Corporation, Confidential
; Written by John Smith


VERSION EQU 00000001
CRC_STUFF EQU 0xffff



Here is the first few errors reported by the compiler:
/usr/ntox86/bin/as save.s -o save.o
save.s: Assembler messages:
save.s:1: Error: no such 386 instruction: copyright' save.s:2: Error: no such 386 instruction: guidant’
save.s:3: Error: no such 386 instruction: written' save.s:6: Error: no such 386 instruction: version’
save.s:7: Error: invalid character ‘_’ in opcode


My command line is “qcc -v save.s”

What simple thing am I missing? Thanks in advance.