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.
我试图找出一种从 MIPS 中的数字中获取数字组的方法。我的意思是,假设我的十六进制值为 0x123456789ABCDEF0,我试图一次加载 2 个组。例如;首先用值 12 加载 $t0,然后执行一些操作,然后是 34,然后是 56,然后是 78 等等,直到 F0。
所以,第一个问题是,假设整个值的大小是 64 位,每个组是 8 位,我应该在 .data 段中声明什么,因为它是十六进制的?
其次,我如何从十六进制值中获取 2 组?
亲切的问候