Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Turbo Assembler

< >

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

#3344on 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!",'TEMPLATE#39; .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 About Acknowledgements Extensions Day 630 Donate feedback@pldb.io