Turbo Assembler

"TASM" redirects here. For other uses, see Tasm (disambiguation).
Turbo Assembler
Developer(s) Borland
Initial release 1989 (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

References

    Notes
    This article is issued from Wikipedia - version of the 11/14/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.