When trying to compile the following program stub:
;put 1 into accumulator register
mov $1, %eax
I get an error on:
$ gcc d.s
d.s: Assembler messages: d.s:1: Error: no such instruction: `put 1 into accumulator register'
Why doesn't the assembler skip over the comment, or is there something I'm doing wrong here to insert in a comment?