The 16-bit 8086 processor was the first member of the x86 family.

learn more… | top users | synonyms

1
vote
0answers
20 views

Scan String from keyboard?

I cannot manage to scan a string from the keyboard and then show it o the user in assembly. I could easily do the same with an integer using SCAN_NUM and PRINT_NUM. However I can't figure out how to ...
0
votes
1answer
22 views

randomrange in assembly with Irvine

I am working on x86 assembly language. I want to get two parameters that one is column and other one is row, using randomrange within the interval [0,5]. Here I tried to adjust the interval by ...
1
vote
0answers
20 views

How can ndisasm use packsswb in 16-bit mode?

Consider the file generated by the following Bash shell code: echo -n "\x0f\x63\x42\xac" > binarydata Now I run ndisasm on the file to see which instructions it would represent: ndisasm -b 16 ...
0
votes
1answer
34 views

increasing count in an array in Assembly 8086

freq dw 512 dup(0) lea si, freq ;Now if I move a char 'a' into al and then do: mov [si], al will that put the letter 'a' into the first spot in the array? I am trying to have the ASCII number ...
-1
votes
0answers
36 views

huffman coding for compression in 8086 [closed]

Hi I am working on a code to compress a file using huffman coding in 8086. I am unsure how to make the code to build the tree, my prof explained huffman using the tree diagram and a table of arrays of ...
0
votes
3answers
62 views

Importance of Hexadecimal numbers in Computer Science

When studying programming 8085, 8086 and microporcessors in general we always have hexadecimal representation. Its ok that binary numbers are important in computers. But how these hexadecimal numbers ...
0
votes
3answers
45 views

assembly getting an input immediately

Is there any interruption in assembly which read an input immediately (I mean without waiting for an enter and etc). For example: In java there is in the keylistener a function gives the ascii code of ...
-2
votes
1answer
54 views

Finding the minium value in an array [closed]

So, this is one of my first assembly code, what do you think about it? Specifically 1 Is there a better way I can go thourgh array? 2 I'm using SI to store the array address because I've seen it's ...
0
votes
1answer
21 views

How am I supposed to test if an assembly procedure works?

I'm starting to learn assembly. Let's say I write a procedure to find to minium value in an array of integers. PUBLIC _findmin .MODEL SMALL .CODE _findmin PROC // code here... _findmin ENDP END ...
0
votes
1answer
46 views

INT 21h does not print

I wonder why this procedure does not print: print: push ax push bx push dx mov ah, 02h ciclo: mov al, [si] int 21h inc si loop ciclo pop dx pop bx pop ax ret According to here, calling ...
0
votes
1answer
28 views

Register Value 8086

If AL contains the value 10 and AH contains the value 10 what does AX contain? I Know AH and AL are two 8 bit registers and AX is AH and AL joined together to be a 16 bit register. The way I worked ...
-1
votes
0answers
22 views

assembly for 32 bit prcessor after 16 [closed]

I'm new in assembly programming ,i have learned assembly for 16 bit(8086) intel processor (about 2 week) i found it very interesting .i want to learn assembly for 32 bit processor ,so is there any ...
0
votes
3answers
83 views

Assembly CMP result differs depending on used register?

I've been working on my assembly project and came across a fact I can't understand. I have a word-array called "lent" filled with some numbers. When I print what is under 0 index it shows ASCII 0 ...
-2
votes
0answers
20 views

display hi hello cool in rolling fasion in 8086 [closed]

Can you please explain the logic of this program? .model small .stack 64 .data str db 0,0,0,0,76h,06,0h db 0h,76h,79h,38h,38h,03fh,00h,00h db 39h,3fh,3fh,38h db 0,0,0,0,0,0 .code mov ...
-2
votes
0answers
31 views

press keypad and display key on monitor in 8086 [closed]

Can you please explain the logic of this program? Thanks in advance. .model small .data prompt db 'press any key',13,10,'$' msg db 'the key pressed is:$' msg1 db 'the row and column of the key ...
-2
votes
0answers
30 views

displaying 'FIRE' and 'HELP' on seven segment display

I have the program below for displaying 'FIRE' and 'HELP' in the 7 segment display. But I could not understand this. Can you please explain the logic of each segment? EDISP25, FIRE05 etc. .MODEL ...
-1
votes
0answers
77 views

conversion of binary to BCD 7 segment display in 8086

I have this code for binary to BCD converter using seven segment display. But I am not able to understand con1 and con3 part. Can you please explain pseudocode/algorithm or logic behind this code. ...
0
votes
1answer
56 views

calculate logical address from physical address (x86)

As far as i know, the physical address is calculated by shifting the segment address (16-bit) left 4 times and adding it with the 16-bit offset address. My question is, what if 2 different sets of ...
0
votes
2answers
49 views

Assembly x86 Understanding Define Word (DF) instruction

I'm just starting to play a little bit with assembly so excuse me if my questions are dumb. My questions are about this (I'm trying to divide 100 by 5, playing with memory and variables of course!) ...
0
votes
1answer
51 views

Why REP can be added to any String Data Transfer except LOADS?

REP STOSB (STOSW or STOSD ) REP MOVSB REP INSB REP OUTSB Those string data transfer are allowed but REP LODSB not ?
2
votes
1answer
57 views

Is all data valid x86 16-bit machine code?

Executing ndisasm /dev/urandom seems to never give me any errors. This suggests that I am either very lucky or all bytes really disassemble into 16-bit assembler. I am facing an actual issue because ...
2
votes
2answers
62 views

MUL set the OF when it should not

That's the problem: at the second mul the overflow flag gets set to 1; the multiplication is a simple 120*(-6) = -720, which is contained in 16 bits... I don't understand why. .model small ...
1
vote
1answer
141 views

Assembly 8088 Print AX, BX, AH, AL, BH, BL

I am working on some stuff for a class of mine and I am stuck on an issue to keep me from progressing. In the code below on line 10, 14 and 16 I need to print out the respective values to what the ...
0
votes
1answer
45 views

8086 emulator for mac OSX

I want to study about 8086 instructions. I want to know how the registers, flags, stack pointer etc are changing according to each instructions. So that I want to install an 8086 emulator in my Mac ...
5
votes
1answer
81 views

How do you provoke a floating point error in 32 bits

How do you provoke a floating point error in 32 bits (commonly known as coprocessor error [INT 16 :8086].
4
votes
1answer
124 views

how to find number of digits in assembly 8086?

I am a new assembly programer and I could not succeed in finding how many digits a number has.My purpose is to find factorials. I program in an emulator of assembly 8086.
0
votes
0answers
204 views

Assembly Language 8086 add using 32 bit reg & give value in 64bit?

Assembly Language 8086: I Want add value1 to value2 by using 32bit register and give value under 64bit(equals to 16 digits).. it is Possible to use the space of 2 reg (32+32 = 64bit)?... i Think so ...
2
votes
1answer
83 views

8086 TASM: Illegal Indexing Mode

I am writing an 8086 assembly program that needs to compile through TASM v3.1. I am running into an error I can not seem to fix. My data segment has the following set up for the purposes of keyboard ...
0
votes
2answers
255 views

Multiply 2 Values in Assembly Language 8086?

ASSEMBLY LANGUAGE 8086: I am multiplying two values input from console window. I am using 32 bit registers eax, ebx, but it is not Multiplying the values. The program is running, but it is not ...
0
votes
1answer
103 views

8086 Interrupt 21H Problems [duplicate]

I feel as if I don't understand the function 0AH of interrupt 21H in 8086 assembly. I read syntax tutorials such as: "The first byte of the buffer specifies the maximum number of characters it can ...
1
vote
0answers
159 views

I am trying to output a string from array in 8086 assembly

BITS 16 ORG 0x0100 SECTION .text MAIN: mov DI,array call GetString call Putln call PutString call Putln mov SI,array ;jmp Next ;Next: mov AX,4C00H ...
0
votes
1answer
109 views

Multiplying using assembly 8086 in DOSBOX

I am trying to do a basic multiplication but I keep getting errors and I don't understand why. I know that I have to use "MUL". Here is the code I am working with POP AX MOV AL, [NUMB] MUL 10H POP ...
-2
votes
4answers
151 views

Assembly 8088 - converting to hexadecimal

I am trying to write an assembly code to do a file hexdump, just like in Linux when you do "hexdump -C sample.txt" from the command line. I got as far as opening the file and reading the contents into ...
0
votes
1answer
150 views

assembly reading binary number to decimal 8086 (NASM)

i dont see what am i doing wrong. I need to to binary calculator which input format is something like "00000001b+00000010b ... the output needs to be in binary too ... the operator can be +,-,*,/. ...
0
votes
2answers
406 views

assembly Language 8086 How to make 64bit integer Calculator?

I want to make 64-bit integer calculator in 8086 assembly language, a calculator which has these functionalities: addition, subtraction, division, multiply. In Console Window it gives menu like... If ...
0
votes
2answers
144 views

8086 ASM - Output String to screen

Removed due to plagiarism. Sorry.
-1
votes
1answer
178 views

Converting a hex character within Assembly

I'm currently programming in Assembly for an 8086. The current task I'm doing is converting 4 hex digits into its decimal representation. I've tried following my tutors method but I'm confused at the ...
0
votes
0answers
35 views

(8086 Assembly) What is the absolute simplest way to send a string to a video memory address in B800h? [duplicate]

mov ax, 0b800h mov es, ax mov di, :address: mov es:[di], :string: Quickest way to do this? My code is already very cluttered so I really need the shortest method.
0
votes
0answers
158 views

8086 ASM - Hex to Binary

Removed due to plagiarism. Sorry.
0
votes
2answers
98 views

Loops and conditionals in TASM Assembly 8086 DOS

I want to run this loop with a conditional at the end in this fashion mov cx, 10 mov di, 0 loop: ... inc di dec cx cmp di, 5 jne loop ... jnz loop but it seems like it won't work unless ...
0
votes
1answer
104 views

Loops in Assembly: TASM on 8086 (DosBox)

I'm trying to loop this code which writes a character "Q" to an address in the video memory segment b800, specified by es:[di] here I've attempted to increment the loop by two (since every screen ...
0
votes
0answers
105 views

Writing ASCII symbols to video memory in assembly with TASM on 8086

I need to write a program for writing ASCII symbols to the video memory. .model tiny .stack .data .code main: mov ax, 0b800h mov ds, ax mov aL, 'x' mov es, bx mov es:[1], aL mov ah, 4ch int 21h ...
0
votes
1answer
68 views

8086 address b800h: writing a symbol directly to video memory with TASM

I want to write a program for displaying ascii symbols by writing directly to the video memory. .model tiny .stack .data .code main: mov ax, b800h mov ds, ax mov aL, 'x' mov es, bx mov es:[20], aL ...
0
votes
1answer
50 views

How to debug a program/view registers that require user input

I have an assembly program that I'm trying to test via debug, however the program usually has user input for the integers. Is there a way to debug the program and still be able to 'run' it in the ...
1
vote
2answers
266 views

Assembly, printing ascii number

I have a problem with my assembly code. I want to print number stored in register cx, but when i tried to print it, it printed ascii character instead of ascii number, so I decided to write a ...
0
votes
2answers
421 views

Storing and incrementing integer variables in MASM x86 assembly

I'm trying to understand assembly. Today's topic is: "Storing and incrementing int variables and printing numbers" :) So here's my code dane segment count db 0 dane ends code segment ...
1
vote
1answer
166 views

square root of a constant (masm, fasm)

Hy all, I need to declare some constants in an assembly source. In a certain part of the program I need the (integer) square root of one of those constants to limit a loop. My question is: is it even ...
0
votes
0answers
77 views

print inverse of input using stack in 8086 assembly

.MODEL SMALL .STACK 100H .DATA m1 db 0dh,0ah,'ENTER NUMBER(O,9):$' .CODE MAIN PROC ;display user prompt lea Dx,m1 MOV AH,9 ...
1
vote
0answers
53 views

Why can't I directly manipulate the trace flag of an 8086 processor? [closed]

Both my textbook and this site say that "the 80x86 CPUs do not provide any instructions that directly manipulate the trace flag." Why not? Is it some kind of security risk? Wouldn't (hypothetical) ...
2
votes
2answers
147 views

Printing a string without OS

I have a simple program in x86 assembly language. It should print a string directly to the video memory without OS. [bits 16] [org 0x7c00] mov ax, 0x3 int 0x10 sdl mov ax, 0xb800 mov es,ax mov si, ...

1 2 3 4 5 6