代码搜索:opcode
找到约 2,963 项符合「opcode」的源代码
代码结果 2,963
www.eeworm.com/read/405816/2282132
c opcode0.c
#include "cpudefs.h"
void op_0(void) /* OR */
{
ULONG dstreg = opcode & 7;
BYTE src = nextiword();
BYTE dst = regs.d[dstreg].B.l;
src |= dst;
regs.d[dstreg].B.l = src;
CLEARFLGS;
if (
www.eeworm.com/read/405816/2282133
c opcode1.c
#include "cpudefs.h"
void op_1000(void) /* MOVE */
{
ULONG srcreg = (opcode & 7);
ULONG dstreg = (opcode >> 9) & 7;
BYTE src = regs.d[srcreg].B.l;
regs.d[dstreg].B.l = src;
CLEARFLGS;
if
www.eeworm.com/read/405816/2282136
c opcode3.c
#include "cpudefs.h"
void op_3000(void) /* MOVE */
{
ULONG srcreg = (opcode & 7);
ULONG dstreg = (opcode >> 9) & 7;
{{ WORD src = regs.d[srcreg].W.l;
regs.d[dstreg].W.l = src;
{ CLEARFLGS;
www.eeworm.com/read/405816/2282139
c opcode7.c
#include "cpudefs.h"
void op_7000(void) /* MOVE */
{
ULONG srcreg = (LONG)(BYTE)(opcode & 255);
ULONG dstreg = (opcode >> 9) & 7;
{{ ULONG src = srcreg;
{ CLEARVC;
ZFLG = ((LONG)(src)) == 0;
www.eeworm.com/read/405816/2282141
c opcode5.c
#include "cpudefs.h"
void op_5000(void) /* ADD */
{
ULONG srcreg = imm8_table[((opcode >> 9) & 7)];
ULONG dstreg = opcode & 7;
{{ ULONG src = srcreg;
{ BYTE dst = regs.d[dstreg].B.l;
{{ULONG
www.eeworm.com/read/405816/2282144
c opcode4.c
#include "cpudefs.h"
#include "M68000.h"
extern int pending_interrupts;
void op_4000(void) /* NEGX */
{
ULONG srcreg = (opcode & 7);
{{ BYTE src = regs.d[srcreg].B.l;
{ ULO
www.eeworm.com/read/405816/2282146
c opcode8.c
#include "cpudefs.h"
/* BFV 061298 - DIVU/DIVS opcodes are modified to decrement the icount */
void op_8000(void) /* OR */
{
ULONG srcreg = (opcode & 7);
ULONG dstreg = (opcode >> 9) & 7;
B
www.eeworm.com/read/405816/2282147
c opcode2.c
#include "cpudefs.h"
void op_2000(void) /* MOVE */
{
ULONG srcreg = (opcode & 7);
ULONG dstreg = (opcode >> 9) & 7;
LONG src = regs.d[srcreg].D;
regs.d[dstreg].D = (src);
CLEARFLGS;
if (
www.eeworm.com/read/398200/2390831
h mips_opcode.h
/*-
* Copyright (c) 1992 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Ralph Campbell.
*
* Redistributi
www.eeworm.com/read/398200/2395168
h openrisc_opcode.h
//=============================================================================
//
// openrisc_opcode.h
//
// Define the instruction formats and opcode values for the OpenRISC
// instruction se