about summary refs log tree commit diff stats
path: root/test/arch/msp430/arch.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix html; Add reg testFabrice Desclaux2021-12-061-0/+1
|
* Rename miasm2 to miasmFabrice Desclaux2019-03-051-3/+3
|
* Support python2/python3Fabrice Desclaux2019-03-051-8/+11
|
* symbol_pool -> loc_dbAjax2018-07-031-3/+3
|
* Code cleaning: remove useless / commented codeAjax2018-06-211-4/+0
|
* Core: updt parser structureFabrice Desclaux2018-05-141-1/+4
|
* Remove PYTHONSTARTUP in end-user scriptsAjax2017-04-241-6/+0
|
* Cpu: modify instructions' offset relative encodingFabrice Desclaux2015-04-011-2/+2
| | | | | | | | | | | | | | | | | | | The assembler will automatically use instruction len in offset computation In the following instruction: 0x10: EB 02 JMP 0x14 If we assemble this instruction, the requested instruction send to the assembler engine will be: JMP +0x4 And will be encoded to: EB 02 Previously, the assembly of: JMP +0x4 was: EB 04
* Miasm v2serpilliere2014-06-031-0/+110
* API has changed, so old scripts need updates * See example for API usage * Use tcc or llvm for jit emulation * Go to test and run test_all.py to check install Enjoy !