1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/**
* @namespace biew_plugins_II
* @file plugins/disasm/null_da.c
* @brief This file contains implementation of Data disassembler.
* @version -
* @remark this source file is part of Binary vIEW project (BIEW).
* The Binary vIEW (BIEW) is copyright (C) 1995 Nick Kurshev.
* All rights reserved. This software is redistributable under the
* licence given in the file "Licence.en" ("Licence.ru" in russian
* translation) distributed in the BIEW archive.
* @note Requires POSIX compatible development system
*
* @author Nick Kurshev
* @since 1999
* @note Development, fixes and improvements
**/
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "reg_form.h"
#include "plugins/disasm.h"
#include "bconsole.h"
#include "biewhelp.h"
#include "biewutil.h"
#include "reg_form.h"
#include "biewlib/file_ini.h"
#include "biewlib/pmalloc.h"
static int nulWidth = 1;
static const char *width_names[] =
{
"~Byte",
"~Word",
"~Double word",
"~Quad word"
};
static tBool __FASTCALL__ nulSelect_width( void )
{
unsigned nModes;
int i;
nModes = sizeof(width_names)/sizeof(char *);
i = SelBoxA(width_names,nModes," Select bitness mode: ",nulWidth);
if(i != -1)
{
nulWidth = i;
return True;
}
return False;
}
static char *outstr;
static DisasmRet __FASTCALL__ nulDisassembler(unsigned long ulShift,
MBuffer buffer,
unsigned flags)
{
DisasmRet ret;
int type,cl;
const char *preface;
if(!((flags & __DISF_SIZEONLY) == __DISF_SIZEONLY))
{
memset(&ret,0,sizeof(ret));
ret.str = outstr;
switch(nulWidth)
{
case 0: preface = "db ";
type = DISARG_BYTE;
cl = 1;
break;
default:
case 1: preface = "dw ";
type = DISARG_WORD;
cl = 2;
break;
case 2: preface = "dd ";
type = DISARG_DWORD;
cl = 4;
break;
case 3: preface = "dq ";
type = DISARG_QWORD;
cl = 8;
break;
}
ret.codelen = cl;
strcpy(outstr,preface);
disAppendDigits(outstr,ulShift,APREF_USE_TYPE,cl,buffer,type);
}
else
if(flags & __DISF_GETTYPE) ret.pro_clone = __INSNT_ORDINAL;
else
switch(nulWidth)
{
case 0: ret.codelen = 1; break;
default:
case 1: ret.codelen = 2; break;
case 2: ret.codelen = 4; break;
case 3: ret.codelen = 8; break;
}
return ret;
}
static void __FASTCALL__ nulHelpAsm( void )
{
hlpDisplay(20010);
}
static int __FASTCALL__ nulMaxInsnLen( void ) { return 8; }
static ColorAttr __FASTCALL__ nulGetAsmColor( unsigned long clone )
{
UNUSED(clone);
return disasm_cset.cpu_cset[0].clone[0];
}
static int __FASTCALL__ nulGetBitness( void ) { return DAB_USE16; }
static char __FASTCALL__ nulGetClone( unsigned long clone )
{
UNUSED(clone);
return ' ';
}
static void __FASTCALL__ nulInit( void )
{
outstr = PMalloc(1000);
if(!outstr)
{
MemOutBox("Data disassembler initialization");
exit(EXIT_FAILURE);
}
}
static void __FASTCALL__ nulTerm( void )
{
PFREE(outstr);
}
static void __FASTCALL__ nulReadIni( hIniProfile *ini )
{
char tmps[10];
if(isValidIniArgs())
{
biewReadProfileString(ini,"Biew","Browser","SubSubMode3","1",tmps,sizeof(tmps));
nulWidth = (int)strtoul(tmps,NULL,10);
if(nulWidth > 3) nulWidth = 0;
}
}
static void __FASTCALL__ nulWriteIni( hIniProfile *ini )
{
char tmps[10];
sprintf(tmps,"%i",nulWidth);
biewWriteProfileString(ini,"Biew","Browser","SubSubMode3",tmps);
}
REGISTRY_DISASM Null_Disasm =
{
"~Data",
{ NULL, "Width ", NULL, NULL, NULL },
{ NULL, nulSelect_width, NULL, NULL, NULL },
nulDisassembler,
NULL,
nulHelpAsm,
nulMaxInsnLen,
nulGetAsmColor,
NULL,
nulGetBitness,
nulGetClone,
nulInit,
nulTerm,
nulReadIni,
nulWriteIni
};
|