代码搜索:opcode
找到约 2,963 项符合「opcode」的源代码
代码结果 2,963
www.eeworm.com/read/303358/13817249
c ldasm.c
/*
___________________________________________________
Opcode Length Disassembler.
Coded By Ms-Rem ( Ms-Rem@yandex.ru ) ICQ 286370715
---------------------------------------------------
www.eeworm.com/read/303358/13817253
pas ldasm.pas
{
---------------------------------------------------
Opcode Length Disassembler.
Coded By Ms-Rem ( Ms-Rem@yandex.ru ) ICQ 286370715
---------------------------------------------------
www.eeworm.com/read/487694/6507539
c ldasm.c
/*
___________________________________________________
Opcode Length Disassembler.
Coded By Ms-Rem ( Ms-Rem@yandex.ru ) ICQ 286370715
---------------------------------------------------
www.eeworm.com/read/405271/11467107
c ldasm.c
/*
___________________________________________________
Opcode Length Disassembler.
Coded By Ms-Rem ( Ms-Rem@yandex.ru ) ICQ 286370715
---------------------------------------------------
www.eeworm.com/read/347503/3170439
l mips-no-jalx.l
.*: Assembler messages:
.*:3: Error: opcode not supported (at this ISA level|on this processor: .*) \(mips.*\) `jalx external_label'
www.eeworm.com/read/447738/1696545
l mips-no-jalx.l
.*: Assembler messages:
.*:3: Error: opcode not supported (at this ISA level|on this processor: .*) \(mips.*\) `jalx external_label'
www.eeworm.com/read/405816/2282120
c tbl6510.c
/*****************************************************************************
*
* tbl6510.c
* 6510 opcode functions and function pointer table
*
* Copyright (c) 1998 Juergen Buchmueller,
www.eeworm.com/read/405816/2282125
c tbl6502.c
/*****************************************************************************
*
* tbl6502.c
* 6502 opcode functions and function pointer table
*
* Copyright (c) 1998 Juergen Buchmueller,
www.eeworm.com/read/405816/2282128
c opcodeb.c
#include "cpudefs.h"
void op_b000(void) /* CMP */
{
ULONG srcreg = (opcode & 7);
ULONG dstreg = (opcode >> 9) & 7;
BYTE src = regs.d[srcreg].B.l;
BYTE dst = regs.d[dstreg].B.l;
ULONG newv
www.eeworm.com/read/405816/2282137
c opcoded.c
#include "cpudefs.h"
void op_d000(void) /* ADD */
{
ULONG srcreg = (opcode & 7);
ULONG dstreg = (opcode >> 9) & 7;
{{ BYTE src = regs.d[srcreg].B.l;
{ BYTE dst = regs.d[dstreg].B.l;
{{ULONG n