i_addq.c

来自「SkyEye是一个可以运行嵌入式操作系统的硬件仿真工具」· C语言 代码 · 共 92 行

C
92
字号
/**********************************//*                                *//*  Copyright 2000, David Grant   *//*                                *//*  see LICENSE for more details  *//*                                *//**********************************/#include "coldfire.h"/* Add quick (ADDQ) instruction *//* Format     15  14  13  12  11  10   9   8   7   6   5   4   3   2   1   0+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+| 0 | 1 | 0 | 1 |   Data    | 0 | 1 | 0 |  EA Mode  |EA Register|+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+*/int ADDQTime[]={1, 3, 3, 3, 3, 4, 3, -1};INSTRUCTION_5ARGS(ADDQ,	unsigned Code2,4,	unsigned Data,3,	unsigned Code1,3,	unsigned EAMode,3,	unsigned EARegister,3);static void execute(void){	struct _Address Destination;	unsigned int Result, SValue, DValue;	ADDQ_Instr Instr;	Memory_RetrWordFromPC(&Instr.Code);	/* Instr.Data is the immedate data, 1-7 represents 1-7, 0 		represents 8 */	SValue=Instr.Bits.Data;	if(SValue==0) SValue = 8;	if(!EA_GetFromPC(&Destination, 32, Instr.Bits.EAMode, Instr.Bits.EARegister)) return;	EA_GetValue(&DValue, &Destination);	if(Instr.Bits.EAMode==7) { 		switch(Instr.Bits.EARegister) {		case 2: 			SKYEYE_ERR("(d_16,PC) addressing mode invalid.");			return;		case 3: 			SKYEYE_ERR("(d_8,PC,Xn) addressing mode invalid.");			return;		case 4: 			SKYEYE_ERR("#<data> addressing mode invalid.");			return;		}	}	Result = SValue + DValue;	/* The condition codes are not affected when the destation is an 		address register */	if(Instr.Bits.EAMode!=1)		SR_Set(I_ADDQ, SValue, DValue, Result);	else		; /* Destination is an address register */	EA_PutValue(&Destination, Result);	cycle(ADDQTime[cycle_EA(Instr.Bits.EARegister,Instr.Bits.EAMode)]);	return;}static int disassemble(char *Instruction, char *Arg1, char *Arg2){	ADDQ_Instr Instr;	Memory_RetrWordFromPC(&Instr.Code);	sprintf(Instruction, "ADDQ.L");	sprintf(Arg1, "#0x%02X", (Instr.Bits.Data == 0) ? 8 : Instr.Bits.Data);	Addressing_Print(32, Instr.Bits.EAMode, Instr.Bits.EARegister, Arg2); 	return 0;}int addq_5206_register(void){	instruction_register(0x5080, 0xF1C0, &execute, &disassemble);	return 1;}

⌨️ 快捷键说明

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