Top "Tasm" questions

Turbo Assembler is an x86 assembler by Borland

What does `dup (?)` mean in TASM?

I have this code here, but I'm unfamiliar with the syntax. STACK16_SIZE = 100h stack16 db STACK16_SIZE dup (?) I …

assembly x86 tasm
How many ways to set a register to zero?

I'm curious how many ways are there to set a register to zero in x86 assembly. Using one instruction. Someone …

assembly x86 x86-16 tasm
How can I convert HEX to DECIMAL?

I plan to convert the X variable to decimal. I'm having a hard time using turbo assembler, can you give …

assembly tasm
I don't understand how to use Interrupt 21, AH=0ah

My information is coming from here. The assignment asks for a program that reads in no more than 20 characters, converts …

assembly dos interrupt bios tasm
Difference between lea and offset

ar db "Defference $" What's the difference between mov dx,offset ar and lea dx,ar I think both are doing …

assembly x86 masm tasm
How to generate a nasm compilable assembly code from c source code on Linux?

Test platform is 32 bit Linux. Basically, I know gcc can be used to generate both Intel and At&T …

assembly nasm gnu-assembler tasm yasm
Assembly difference between TASM and MASM

I am learning TASM at University, but information regarding TASM on the web seems to be very limited. I have …

assembly masm tasm
Program solving expression in assembly

I have a problem with my simple program in assembly. I'm using DOSBox and TASM. The problem is that the …

assembly expression x86-16 tasm dosbox
TASM Can't locate .asm file Error: **Fatal** Command line: Can't locate file: filename.asm

Issue: when I run @ the command prompt >tasm HelloWorld.asm and BTW I am using TAB in entering the …

tasm
Two loops nested inside another loop in x86 assembly

I've got a problem looping in assembly language. When we want to use the counter register for looping in nested …

loops assembly nested-loops tasm