Measures Concepts
GitHub icon

Turbo Assembler

Turbo Assembler - Programming language

< >

Turbo Assembler is an open source programming language created in 1989.

#825on PLDB 35Years Old

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 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. Read more on Wikipedia...


Example from Wikipedia:
.model small .stack 100h .data msg db "Merry Christmas!",'$' .code main proc mov ds, ax mov dx, offset msg mov ah, 9 int 21h mov ax, 4c00h int 21h main endp end main

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Queries Stats Sponsor Day 605 feedback@pldb.io Logout