mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-4152 msp430 improvements
This commit is contained in:
parent
1281fb979b
commit
1e82a772c5
14 changed files with 692 additions and 66 deletions
|
@ -460,16 +460,30 @@ PCodeTest({
|
|||
PCodeTest({
|
||||
'name': 'msp430x',
|
||||
'build_all': 1,
|
||||
'toolchain': 'TI/msp430-elf',
|
||||
'ccflags': '-g -mmcu=msp430x -mlarge -mhwmult=none -fno-builtin -Wl,-T,msp430x.ld -L %(toolchain_dir)s/lib/gcc/msp430-elf/%(gcc_version)s/large/ -lgcc -lmul_none',
|
||||
'toolchain': 'TI/msp430-gcc-9.3.1.11_linux64',
|
||||
'ccflags': '-g -mcpu=msp430x -mlarge -mhwmult=none -fno-builtin -Wl,-T,msp430x.ld -L %(toolchain_dir)s/lib/gcc/msp430-elf/%(gcc_version)s/large/ -lgcc -lmul_none',
|
||||
'language_id': 'TI_MSP430X:LE:32:default',
|
||||
'processor': 'TI',
|
||||
'architecture_test': 'MSP430X',
|
||||
'has_float': 0,
|
||||
'has_double': 0,
|
||||
'has_float': 1,
|
||||
'has_double': 1,
|
||||
'has_longlong': 0,
|
||||
'small_build': 1,
|
||||
'skip_files': ['PointerManipulation.test', 'misc.out'],
|
||||
})
|
||||
|
||||
PCodeTest({
|
||||
'name': 'msp430',
|
||||
'build_all': 1,
|
||||
'toolchain': 'TI/msp430-gcc-9.3.1.11_linux64',
|
||||
'ccflags': '-g -mcpu=msp430 -fno-builtin -mhwmult=none -lgcc -lmul_none',
|
||||
'language_id': 'TI_MSP430:LE:16:default',
|
||||
'processor': 'TI',
|
||||
'architecture_test': 'MSP430',
|
||||
'has_float': 1,
|
||||
'has_double': 1,
|
||||
'has_longlong': 0,
|
||||
'small_build': 1,
|
||||
'skip_files': ['PointerManipulation.test', 'misc.test'],
|
||||
})
|
||||
|
||||
PCodeTest({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue