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.
如何在 68000 程序集中定义十六进制常量?我需要计算逻辑表达式 X'Y + X'Z + YZ,其中 X、Y 和 Z 是十六进制常量,结果以二进制显示。我编写了代码来计算表达式,我只是不确定如何以十六进制定义常量..然后以二进制显示它们。
作为参考,X 为 000F,Y 为 0033,Z 为 0055。
X:直流???
取决于您使用的汇编程序。例如,使用气体语法,您只需编写0xF,0x33和0x55, 类似
0xF
0x33
0x55
.int 0xF*0x33+0xF*0x55+0x33*0x55