Chiggins
Chiggins

Reputation: 8397

Instruction error while learning assembly

So I'm trying to learn some x86 assembly, I'm using NASM as my complier. I have this code that I'm working on, but when I compile, I get an error.

$ nasm -f bin -o myfirst.bin myfirst.asm
myfirst.asm:46: error: parser: instruction expected

Any idea whats wrong? Thanks!

Upvotes: 0

Views: 2527

Answers (1)

James
James

Reputation: 9278

you typed 'mv' instead of 'mov' on line 46

Upvotes: 7

Related Questions