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.
我正在尝试创建一个包含十六进制值的简单变量0xffff。我已经能够将它作为一个宏来使用SET,但我无法让它与类似的东西一起使用ld _time,$ffff。如何将值加载到 中_time?
0xffff
SET
ld _time,$ffff
_time
我的问题是我没有初始化_time。以下工作:
_time SET $ff ld hl, $ffff ld (_time),hl