代码搜索:opcode
找到约 2,963 项符合「opcode」的源代码
代码结果 2,963
www.eeworm.com/read/486451/6532816
h disasm.h
/*
8888888b. 888 888 d8b
888 Y88b 888 888 Y8P
888 888 888 888
www.eeworm.com/read/486451/6532820
h hdisasm.h
#include "Disasm.h"
void FlushDecoded(DISASSEMBLY *Disasm);
void ShowDecoded(DISASSEMBLY Disasm);
void Decode(DISASSEMBLY *Disasm,char *Opcode,DWORD *Index);
www.eeworm.com/read/486451/6532828
cpp disasm.cpp
#include "Disasm.h"
#define BYTES_TO_DECODE 16
const char *Regs[3][9] = {
{"al", "cl", "dl", "bl", "ah", "ch", "dh", "bh"},
{"ax", "cx", "dx", "bx", "sp", "bp", "si", "di"},
{"ea
www.eeworm.com/read/484138/6591308
c disassemble.c
#include "disassemble.h"
const char *RepeatPrefixes[] = {"lock", "rep", "repe", "repz", "repne", "repnz"};
const char *AddressPrefixes[] = {"qword", "fword", "dword", "word", "byte"};
const char
www.eeworm.com/read/483608/6599581
v alu.v
`define add 3'd0
`define minus 3'd1
`define band 3'd2
`define bor 3'd3
`define bnot 3'd4
module alu(out,opcode,a,b);
output[7:0] out;
reg[7:0] out;
input[2:0] opcode;
input[7:0] a,b;
alway
www.eeworm.com/read/481591/6635789
cls clsasm.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
www.eeworm.com/read/481648/6636855
v alu.v
`define add 3'd0
`define minus 3'd1
`define band 3'd2
`define bor 3'd3
`define bnot 3'd4
module alu(out,opcode,a,b);
output[7:0] out;
reg[7:0] out;
input[2:0] opcode;
input[7:0] a,b;
alway
www.eeworm.com/read/479927/6683687
v alu.v
`define add 3'd0
`define minus 3'd1
`define band 3'd2
`define bor 3'd3
`define bnot 3'd4
module alu(out,opcode,a,b);
output[7:0] out;
reg[7:0] out;
input[2:0] opcode;
input[7:0] a,b;
alway
www.eeworm.com/read/478934/6708397
c nr4hdr.c
/* Net/rom transport layer header conversion routines.
*/
#include "global.h"
#include "mbuf.h"
#include "nr4.h"
/* Convert a net/rom transport header to host format structure.
* Return -1 i
www.eeworm.com/read/410380/11289358
c tftpd.c
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permi