float_store_instruction.cpp
来自「浙江大学的悟空嵌入式系统模拟器」· C++ 代码 · 共 47 行
CPP
47 行
#include "Instr_Flag.h"
#include "Instr_Declare.h"
#include "Parser.h"
#include "Register.h"
#include "Types.h"
#include "Reg_Utils.h"
#include "Utils/Debug.h"
namespace PPC {
PPC_INSTRUCTION_IMPL(op_stfd)
{}
PPC_INSTRUCTION_IMPL(op_stfdu)
{}
PPC_INSTRUCTION_IMPL(op_stfs)
{}
PPC_INSTRUCTION_IMPL(op_stfsu)
{}
PPC_INSTRUCTION_IMPL(op_stfsx)
{
PPC_ERROR(("stfsx not implemented!\n"));
}
PPC_INSTRUCTION_IMPL(op_stfsux)
{
PPC_ERROR(("stfsux not implemented!\n"));
}
PPC_INSTRUCTION_IMPL(op_stfdx)
{
PPC_ERROR(("stfdx not implemented!\n"));
}
PPC_INSTRUCTION_IMPL(op_stfdux)
{
PPC_ERROR(("stfdux not implemented!\n"));
}
PPC_INSTRUCTION_IMPL(op_stfiwx)
{
PPC_ERROR(("stfiwx not implemented!\n"));
}
} //namespace PPC
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?