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 #>$3,var在 68k 汇编中意味着什么?
move #>$3,var
我想到了。语法#>是在 68K 中强制长(立即)寻址模式的运算符,因此我的指令 move #>$3,var意味着 - 将值 $3 (0x03) 移动到变量,var强制在 68K 汇编中使用长寻址模式。我不确定支持此操作的处理器。
#>
var
@drhirsch 几乎成功了。