Hello, I'm new to EASy68k, and I have a big problem: I can't assembly even the simplest program, because I always get the invalid syntax error. Here's the code:
Code:
*-----------------------------------------------------------
* Title :
* Written by :
* Date :
* Description:
*-----------------------------------------------------------
ORG $1000
START: ; first instruction of program
MOVE.B #1,D0
* Put program code here
SIMHALT ; halt simulator
* Put variables and constants here
END START ; last line of source
I get the error on line 9 MOVE.B #1,D0. I don't see where's the problem with the code, can you help me?