搜索资源列表
OpCodeSize
- 一个获取opcode的h文件,可以方便的获取指令长度,方便反汇编用-an opcode access to the h file, you can obtain instructions convenient length, used to facilitate anti-Series
OpCode
- 看雪软件安全http:www.pediy.com 上 翻译的opcode结构的文章 对学习反编译很有用处
W32asm_wuji
- 反汇编利器:W32asm无极版 C32asm 是一款非常不错的国产静态反编译工具! C32Asm现具有如下功能: 快速静态反编译PE格式文件(Exe、Dll等) 提供Hex文件编辑功能,功能强大 提供内存Dump、内存编辑、PE文件Dump、PE内存ImageSize修正等多种实用功能 提供内存反汇编功能,提供汇编语句直接修改功能,免去OPCode的直接操作的繁琐 提供反编译语句彩色语法功能,方便阅读分析,能方便自定义语法色彩 提供输入表、输出表、参
8085-alpcodegenerator
- the program code converts the given 8085 opcode into mnemonics of assembly level programming... initially give the no. of opcodes to be entered
dasm
- 机器码指令格式,分析二进制指令确定intel指令长度-opcode struct
killer
- 仅占16字节内存的KILLER.COM----无效指令拦截器 -Only 16 bytes of memory KILLER.COM---- Invalid opcode interceptor
operation
- 该指令系统包含三地址指令、双地址指令、单地址指令和零地址指令 指令长度为16位,包括4位基本操作码字段和三个4位地址字段 根据给定的各类指令的条数,设计出合理的扩展操作码方案-The instruction system includes a three-address instruction, two-address instruction, single-address instruction and zero-address instruction length of 16 ins
Jumpgen
- This program makes the reversers life a bit easier by helping generate jump opcodes for VB5/6 P-Code and x86 assembly language. Rather than having to go into calc to manually calculate the opcode, this program will do it for you.
汇编实验
- 汇编大多是指汇编语言,汇编程序。把汇编语言翻译成机器语言的过程称为汇编。在汇编语言中,用助记符(Memoni)代替操作码,用地址符号(Symbol)或标号(Label)代替地址码。这样用符号代替机器语言的二进制码,就把机器语言变成了汇编语言。于是汇编语言亦称为符号语言。用汇编语言编写的程序,机器不能直接识别,要由一种程序将汇编语言翻译成机器语言,这种起翻译作用的程序叫汇编程序,汇编程序是系统软件中语言处理的系统软件。(Compilation mostly refers to assembly l
65282
- 获取汇编指令长度 ,代码中包含了两个函数, unsigned long __fastcall Decode_Size( LPCVOID Opcode ); unsigned long __fastcall Decode_Size( LPCVOID Opcode, DETAILED_SIZE& Detailed ); 前一函数仅返回指令长度,后一个函数返回指令的详细长度报告:前缀长,指令(包含了MOD/RM 字节,SIB字节)长,第一个操作数长,第二个操作数长。 欢迎大家下