gpt4 book ai didi

c++ - MIPS 模拟器 --- 将指令读入内存 (C++)

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:18:06 24 4
gpt4 key购买 nike

我需要读取一个十六进制格式的 32 位地址(例如:0129ef12)并将这 32 位分成 6-5-5-16 个数据包,分别表示 Opcode-Rd-Rs-Immediate。

这是我目前所拥有的:

typedef unsigned char u8;
typedef unsigned short u16;

union {
unsigned int address;
struct {
u16 imm : 16;
u8 rs : 5;
u8 rd : 5;
u8 opcode : 6;
} i;
} InstRead;

InstRead.address = 0x0129ef12;

cout << hex << int(InstRead.i.opcode) << "\n";
cout << hex << int(InstRead.i.rs) << "\n";
cout << hex << int(InstRead.i.rd) << "\n";
cout << hex << int(InstRead.i.imm) << "\n";

但是,这并没有给出正确的输出...即这些位未按我指定的长度 6-5-5-16 选择...我做错了什么?

最佳答案

union {
unsigned int address;
unsigned int imm : 16,
rs : 5,
rd : 5,
opcode : 6;

} InstRead;

看看你是否有更好的 union 。不过,这将取决于您的编译器。

关于c++ - MIPS 模拟器 --- 将指令读入内存 (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30517315/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com