diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-08-22 12:47:01 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-08-31 07:50:01 +0200 |
| commit | 80e40a3d2ca735db955807ad0605b43ca22e4e35 (patch) | |
| tree | 4d41d7b53565f833444d3520eb22eed3e8bf26f1 /miasm/arch/msp430/jit.py | |
| parent | 5d8beb271d9890241a6d61dd476fab26ca37ebbf (diff) | |
| download | focaccia-miasm-80e40a3d2ca735db955807ad0605b43ca22e4e35.tar.gz focaccia-miasm-80e40a3d2ca735db955807ad0605b43ca22e4e35.zip | |
Avoid generate default locationdb
Diffstat (limited to 'miasm/arch/msp430/jit.py')
| -rw-r--r-- | miasm/arch/msp430/jit.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/miasm/arch/msp430/jit.py b/miasm/arch/msp430/jit.py index faf00434..1212b338 100644 --- a/miasm/arch/msp430/jit.py +++ b/miasm/arch/msp430/jit.py @@ -13,9 +13,8 @@ log.setLevel(logging.CRITICAL) class jitter_msp430(Jitter): - def __init__(self, *args, **kwargs): - sp = LocationDB() - Jitter.__init__(self, ir_msp430(sp), *args, **kwargs) + def __init__(self, loc_db, *args, **kwargs): + Jitter.__init__(self, ir_msp430(loc_db), *args, **kwargs) self.vm.set_little_endian() def push_uint16_t(self, value): |