Tagged Questions

Turbo Assembler is an x86 assembler by Borland

learn more… | top users | synonyms

3
votes
4answers
582 views

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 told me that he managed to find at least 10 ways to do it. The ones I can think of are: ...
2
votes
1answer
64 views

8086 Assembly - DIV going ape, IP jumping to a weird location endlessly

i've been stuck with this problem for like a day, not finding any relevant information.. there's this one part in my code that takes a number (ex. 259) and separates it's digits into array slots. ...
2
votes
1answer
110 views

what do these lines do in assembly?

I am quite new to assembly. I am always confused by the numbers Can someone please help me ? I am using TASM... so 8066 assembler Is there any good reference that I can use? SCREEN_CLEARER: mov ...
2
votes
1answer
66 views

assembler multiple line array+ can't trace in the compiler

I have a project where i manually define a very long array(over 30, every one is a struct object with 2 values). When I define the array in multiple rows I get an error for every row, I don't get the ...
2
votes
2answers
495 views

Assembly: compile a COM program

Can COM program be 32 bit? How can I compile COM program? I have TLINK32 and TASM32. tasm32 \t alex_7.asm pause tlink32 alex_7.obj pause td32 main.exe I ve got following error: Fatal: 16 bit ...
2
votes
2answers
217 views

x86 question about bit comparisons

Im having a problem with a final part of my assignment. We get in a stream of bits, etc etc, in the stream is an integer with the number of 1's in the text portion. I get that integer and its 24 which ...
1
vote
1answer
137 views

How to compile DOS programs using MASM or FASM

I want to compile simple program using assemblers such as MASM or FASM. Ideal model small Stack 256 Dataseg str1 db 'hello','$' Codeseg Startupcode lea dx, [str1] mov ah, 09h int 21h ...
1
vote
1answer
202 views

double buffer video in assembler

I'm trying to do the double buffer video in assembler, but in this case i have a problem, i don't know how to solve it , it can't close after a key is pressed. Apparently the problem is in inc di: ...
1
vote
1answer
111 views

Disassemble command 8E C0

I need to disassemble command 8E C0, can you help me? I already made this: First byte 8E = 10001110b it's mov sr,reg/mem But I don't know what to do with the second byte 11000000
1
vote
1answer
257 views

TASM: Loop inside a loop

does anybody knows what's the syntax for double looping in TASM? I remember you use cx with push and pop function but I don't remember how. Thank you very much.
1
vote
2answers
177 views

Print double word number to base 10

For example I have the number 6C0000h = 7077888d Dividing each word by ten and then saving the remainder on the stack doesn't work in this case, because the lower part of the double word is 0000. ...
1
vote
2answers
2k views

ASM programming, how to use loop?

Im first time here.I am a college student. I've created a simple program by using assembly language. And im wondering if i can use loop method to run it almost samething as what it does below the ...
1
vote
1answer
732 views

No Program Entry Point TASM Error

I'm trying to develop a simple kernel using TASM, using this code: ; beroset.asm ; ; This is a primitive operating system. ; ;********************************************************************** ...
0
votes
1answer
35 views

Error when running simple program in assembly

I wrote a simple program in assembly and I tried to run it using TASM(Turbo) and TLINK. After I run the executable I get this error: TITLE 1st Program .286 .model small .data val1 db 0 .code ...
0
votes
1answer
57 views

output (display) integer using TASM

i would like to output (display) an integer value in assembly language using TurboASM (TASM), someone else asked the same question in another forum and he got a reply telling him that "he should ...
0
votes
1answer
71 views

8086 - storing command line arguments in arrays

I'm writing an encoding/decoding .COM program using Huffman algorithm for dos 8086 (16-bit tasm or masm without using libraries), and need to store 2 command-line arguments (inputfilename and ...
0
votes
1answer
51 views

Functions with parameters in TASM

Could you please post an example in assembly language that uses functions with parameters. Something simple, like function that returns a sum of two elements. Couldn't google any example that is ...
0
votes
1answer
88 views

Does gcc really know how to output NASM Assembly

So I have a simple C program that loops through the args passed to main then returns: #include <stdio.h> int main(int argc, char *argv[]) { int i; for(i = 0; i < argc; ++i) { ...
0
votes
0answers
77 views

Handle left mouse butto click and right mouse button click in asm

So the task is - write program that draw rectangle which left up corner's coordinates are - left mouse button click coordinate and right down corner's coordinates are - right mouse button click This ...
0
votes
2answers
126 views

Infinite Loop Error in TASM Assembler Code

I'm currently writing a program which inputs a string, stores it in memory and then outputs back to screen. But I'm having trouble solving this task. My source code: IDEAL MODEL small STACK 100h ...
0
votes
0answers
66 views

TASM SIMPLE LOOP implemention

I just want too write simple .asm code for TASM that work as for in C++ int t=2; for(int i=0;i<2;i++) t=t+(i-1)*7*t; How can I implement it with TASM?
0
votes
0answers
146 views

Is this TASM Program to Add N Numbers Efficeint [closed]

The Assembly Program Given here [spam link removed] uses a Standard approach for adding N Numbers, Is this Method Efficient.What can be do to improve its efficiency?
0
votes
1answer
121 views

location counter overflow in tasm

i have this problem with an assembly file with 50K lines of code (it´s generated). I tried with model huge but the problem persists. Someone help me? *Warning* Libreria.asm(26227) Location counter ...
0
votes
1answer
87 views

Failed Using C# To start TASM

Thanks before, i experienced some problem. I'm on project working on my Assembly IDE. I use TASM for the compiler. My C# Code fro compiling is this : void Compile(string file){ ProcessStartInfo ...
0
votes
2answers
165 views

keyboard interruption handler. assembler

I need to write a program on assembler (TASM). It should write a message on console when any button was pressed. It should be int 9h handler! So how can I change standard keyboard handler for my own ...
0
votes
1answer
272 views

ASCII code interpretation (assembly)

First of all, thanks for all the help thus far. Complete code can be found here I have trouble understanding these lines. I wrote some comments... The line, for example, mov es:[si+6], al means ...
0
votes
2answers
61 views

What Dos interupt do i need to use to output time and date?

I am using int 21-2AH and 2CH to get the time and date and understand what registers the results are returned. But when i use int 21-2 to output it i just get a funny character. What do i use to ...
0
votes
1answer
447 views

DEBUG how to display, increment, loop in a cmd debug environment

a 0100 mov cx,59 mov ah,02 mov dl,20 int 21 inc dl loop 0105 int 20 g i am trying to loop and increment the value in DL but when i run it .it does not show anyting or rather it shows the 'space' ...
0
votes
1answer
436 views

how can i do a snake game on tasm program with assembly language? [closed]

Possible Duplicate: snake in assembly language i have a homework, it's the snake game but with assembly language depends on keyboard arrows and i don't know how to move the tail of snake!
0
votes
1answer
196 views

Turbo Assembler [closed]

Why was Turbo Assembler development abandoned by Borland?
0
votes
1answer
246 views

TASM bit operations

I need to show all numbers from matrix(3x3) where number has two first bits set. I think i'm somewhere near the solution, but something is wrong, can you point what is wrong? .model small .stack 100h ...
0
votes
1answer
285 views

TASM how to get command line arguments?

how do you get command line argument in TASM? Pretty simple in MASM32 invoke GetCL,1,addr buffer
0
votes
1answer
97 views

Building TASM32 SDK?

I just downloaded Embarcadero Delphi 2010 (the trial version). tasm32 and the related stuffs (ilink32, implib, impdef, etc) are still available in it. Still they lack header files and import libs, but ...
0
votes
0answers
306 views

Runtime error of TASM language help!

This is a program that finds the highest common factor of 2 different 3digit number. If I put 200, 235,312 (low numbers) it works fine, but if I put 500, 550, 654 (i.e. bigger numbers) the program ...
0
votes
2answers
675 views

8086 programming using TASM: pc to pc communication

.model small .stack 100 .data .code mov ah,00h mov al,0e3h mov dx,00h int 14h back: nop l1: mov ah,03h mov dx,00h int 14h and ah,01h cmp ah,01h jne l1 mov ah,02h mov ...
0
votes
1answer
438 views

tasm not run predefined data in variable

I am assigning some value in a variable ar db 107,106,105,104,103,102,101,100,99,98 and also not run string msg db "this is not printed by tasm ","$" but this is run on emu8086 emulator The ...
0
votes
1answer
434 views

Print double-word number to string

i have double word number in si:bx. How can i write it to array as string?
-1
votes
1answer
18 views

How to read and write A FAT in WinXP

I am trying to read the FAT using Int 13H of but its Failing as I run the program. It flashes a message "Access Denied " though I am working in the Administration Domain Can any one answer me the ...
-1
votes
2answers
2k views

Need Assembly Programming Help (TASM) - Booth's Algorithm

I've written an algorithm to simulate Booth's Algorithm using only Add, Sub, and Logical Operators and return a hexadecimal value. My Tasm compiler keeps throwing me these errors. When I try to ...
-2
votes
3answers
2k views

snake in assembly language [closed]

How can I recreate the snake game using assembly language and the Turbo Assembler?