Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MOVE 1234,D5和 和有什么不一样MOVE #1234,D5?我试图在网上查看,但看不到第一条指令在做什么。
MOVE 1234,D5
MOVE #1234,D5
第二个将值 1234 移入 D5,第一个将地址 1234 处的值移入 D5。您可能想研究寻址模式(例如,这里:http ://alanclements.org/68kaddressingmodes3.html )。
'#' 代表一个 CONSTANT,如此处所述。
在第 43 页上,它指出:作为源操作数的常量通过在其前面加上特殊字符 # 来指定