代码搜索:opcode
找到约 2,963 项符合「opcode」的源代码
代码结果 2,963
www.eeworm.com/read/101078/6253360
h codegen.h
#ifndef __CodeGen_H__
#define __CodeGen_H__
#include
#include "Opcode.H"
#include "PTNode.H"
// This is the code generator class. Once the parser has completed building
// the
www.eeworm.com/read/342096/12041580
v datapath.v
module datapath(writepc,selldst,writemem,writeir,selload,selst,writereg,selalua,selalub,aluop,writezero,clk,rst,memin,memaddr,memwe,zero,n,v,c,opcode,dataout);
input writepc,selldst,writemem,writei
www.eeworm.com/read/222772/14674234
h op.h
extern void OpInit(void);
extern void ParseArgs(byte Mnem);
typedef struct { byte OpCode; char *X, *Y; } Mode;
typedef struct { char *Name; int Modes; Mode *Start; } Code;
extern Code CodeTab[];
www.eeworm.com/read/250243/4434661
c ppc-opc.c
/* ppc-opc.c -- PowerPC opcode list
Copyright 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is
www.eeworm.com/read/250243/4434663
h ppc.h
/* ppc.h -- Header file for PowerPC opcode table
Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is pa
www.eeworm.com/read/250243/4436516
c ppc-opc.c
/* ppc-opc.c -- PowerPC opcode list
Copyright 1994 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is part of GDB, GAS, and the GNU binutils.
GDB, GAS, and
www.eeworm.com/read/209559/4961653
c ppc-opc.c
/* ppc-opc.c -- PowerPC opcode list
Copyright 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is
www.eeworm.com/read/209559/4961654
h ppc.h
/* ppc.h -- Header file for PowerPC opcode table
Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is pa
www.eeworm.com/read/209559/4963502
c ppc-opc.c
/* ppc-opc.c -- PowerPC opcode list
Copyright 1994 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is part of GDB, GAS, and the GNU binutils.
GDB, GAS, and
www.eeworm.com/read/204713/5029581
java instruction.java
package com.jopdesign.tools;
import java.util.*;
public class Instruction {
String name;
public int opcode;
public boolean hasOpd;
public boolean isJmp;
final static int INSTLEN = 16;
priv