Turbo Assembler
Developer(s) | Borland |
---|---|
Initial release | 1989 |
Stable release |
5.4
|
Operating system | DOS, Windows |
Type | Assembler |
License | Proprietary |
Website | Official webpage at the Wayback Machine (archived October 23, 2010) |
Turbo Assembler (TASM) is a computer assembler (software for program development) developed by Borland which runs on and produces code for 16- or 32-bit x86 MS-DOS or Microsoft Windows. It can be used with Borland's high-level language compilers, such as Turbo Pascal, Turbo Basic, Turbo C and Turbo C++. The Turbo Assembler package is bundled with the Turbo Linker, and is interoperable with the Turbo Debugger. TASM can assemble Microsoft Macro Assembler (MASM) source using its MASM mode and has an ideal mode with a few enhancements. Object-Oriented programming has been supported since version 3.0. The last version of Turbo Assembler is 5.4, with files dated 1996 and patches up to 2010; it is still supplied with Delphi and C++Builder.
TASM itself is a 16-bit program; it will run on 16- and 32-bit versions of Windows, and produce code for the same versions. There are ways to run 16-bit programs such as TASM on 64-bit Windows (e.g., on a virtual machine), but it will not generate 64-bit Windows code.
The Borland Turbo Assembler 5.0 package is supplied on three 3.5-inch diskettes and with three small books.
Example
A Turbo Assembler program that prints 'Merry Christmas!':
.model small
.stack 100h
.data
msg db "Merry Christmas!",'$'
.code
main proc
mov ax, @data
mov ds, ax
mov dx, offset msg
mov ah, 9
int 21h
mov ax, 4c00h
int 21h
main endp
end main
See also
- Comparison of assemblers
- A86 - contemporary of Turbo Assembler
- MASM - contemporary of Turbo Assembler.
- FASM - More recent x86 assembler.
References
- Notes
- Swan, Tom (1989). Mastering Turbo Assembler. Carmel, Indiana: Howard W. Sams & Company, Hayden Books division of Macmillan Computer Publishing. ISBN 0-672-48435-8. 2nd Edition, 1995 ISBN 0-672-30526-7.