2012-06-05 22:43:06 +02:00
|
|
|
This simple tool reads a source file with TASM syntax and converts it
|
|
|
|
to AT&T syntax.
|
2005-12-22 18:19:16 +01:00
|
|
|
|
2012-06-05 22:43:06 +02:00
|
|
|
The AT&T syntax is widely used by GNU tools, in particular the GAS(AS)
|
|
|
|
interpreter and GCC compiler.
|
2005-12-22 18:19:16 +01:00
|
|
|
|
2012-06-05 22:43:06 +02:00
|
|
|
The TASM syntax is used by many commercial compilers and disassemblers,
|
|
|
|
ie. NASM, MASM, Visual Studio or IDA Pro.
|
2005-12-22 18:19:16 +01:00
|
|
|
|
2012-06-05 22:43:06 +02:00
|
|
|
Ta2As can automate most of the conversion, but it still isn't perfect
|
|
|
|
- some correction have to be made manually before the code compiles.
|
|
|
|
|
|
|
|
This tool was originally written by Frank van Dijk and released by
|
|
|
|
SPiRiT group; this is continuation of his work, although not much of
|
2016-05-19 12:21:23 +02:00
|
|
|
the original code remains.
|