- If you
do not specify
a .B or
.W or
.L
in a
integer operation,
then:
- The M68000 assembler (compiler)
will assume that
you will use
short (= .W)
as the integer data type !!!
|
In other words:
ADD D0, D1 is assumed to be: ADD.W D0, D1
ADD x, D6 is assumed to be: ADD.W x, D6
|
|