i_subx.c

来自「skyeye的开源代码」· C语言 代码 · 共 72 行

C
72
字号
/**********************************//*                                *//*  Copyright 2000, David Grant   *//*                                *//*  see LICENSE for more details  *//*                                *//**********************************/#include "coldfire.h"/* SubX instruction *//* Format     15  14  13  12  11  10   9   8   7   6   5   4   3   2   1   0+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+| 1 | 0 | 0 | 1 |Register Dx| 1 | 1 | 0 | 0 | 0 | 0 |Register Dy|+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+*/int SUBXTime=1;INSTRUCTION_4ARGS(SUBX,	unsigned Code2,4,	unsigned RegisterDx,3,	unsigned Code1,6,	unsigned RegisterDy,3);static void execute(void){	struct _Address Source,Destination;	unsigned int Result, SValue, DValue;	SUBX_Instr Instr;	Memory_RetrWordFromPC(&Instr.Code);	if(!EA_GetFromPC(&Source, 32, 0, Instr.Bits.RegisterDy)) return;	if(!EA_GetFromPC(&Destination, 32, 0, Instr.Bits.RegisterDx)) return;	EA_GetValue(&SValue, &Source);	EA_GetValue(&DValue, &Destination);	Result = DValue - SValue - (int)SRBits->X;	SR_Set(I_SUBX, SValue, DValue, Result);	EA_PutValue(&Destination, Result);	cycle(SUBXTime);	return;}static int disassemble(char *Instruction, char *Arg1, char *Arg2) {	SUBX_Instr Instr;	Memory_RetrWordFromPC(&Instr.Code);	sprintf(Instruction, "SUBX.L");	Addressing_Print(32, 0, Instr.Bits.RegisterDy, Arg1);	Addressing_Print(32, 0, Instr.Bits.RegisterDx, Arg2);	return 0;}int subx_5206_register(void){	instruction_register(0x9180, 0xF1F8, &execute, &disassemble);	return 1;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?