Tagged Questions

The 8086 processor was designed by Intel in the mid-1970's. It gave rise to the x86 architecture.

learn more… | top users | synonyms

8
votes
9answers
816 views

suggest a 8086 project

It's required from me to suggest an assembly project (not too simple and not too complex) tol be written for Intel 8086 microprocessor. One of the suggested projects was a calculator doing normal ...
7
votes
5answers
380 views

Most Efficient way to set Register to 1 or (-1)

I am taking an assembly course now, and the guy who checks our home assignments is a very pedantic old-school optimization freak. For example he deducts 10% if he sees: mov ax, 0 instead of: xor ...
6
votes
1answer
222 views

Explain how the AF flag works in an x86 instructions?

I have a little 8086 emulator and I've had a long standing bug for like 2 years now that AF does not behave properly inside of sub and add instructions. My current way of computing its value is this ...
6
votes
2answers
463 views

Is there a C compiler that targets the 8086?

I have an 8086 CPU emulator. It emulates only 8086 instructions. I am searching now for a C compiler to target this emulator with. Is there any C compiler out there that can do this? Also, having a ...
6
votes
8answers
4k views

Looking for 16-bit x86 compiler

I am working on an embedded systems project and have run into an issue of the compiler being programatically embedded in the Paradigm C++ IDE. I would like to be able to automate building. The ...
5
votes
8answers
726 views

Real mode BIOS routine and Protected Mode

I am doing some OS experiment. Until now, all my code utilized the real mode BIOS interrupt to manipulate hard disk and floppy. But once my code enabled the Protect Mode of the CPU, all the real mode ...
4
votes
1answer
115 views

manipulating 32 bit numbers with 16 bit registers in 8086

Im trying to write a program which get two 6-digit decimal numbers and show the addition of them, but in 16 bit 8086 i defined numbers as double word and put LO in WORD 1 and HO in word 2. similar ...
4
votes
3answers
423 views

Assembly 8086 - Example of subtracting 2 numbers and setting the carry flag?

I've been reading around and with the 8086 Instruction Set, it says that a CMP (compare) can set the Carry Flag. I understand that a compare subtracts two operands but I was wondering if anyone can ...
4
votes
3answers
94 views

Which is the Assembler which supports most of the existing interrupts?

I Am currently using emu8086(so i am programming for the 8086mP) but i have a hard time with emu8086 since it cannot "understand" interrupts like int 21h/ah=5bh and many others.What assembler/ide ...
3
votes
3answers
84 views

C: How do I simulate 8086 registers?

Ohai, I'm currently trying to implement an 8086 ASM debugger for learning purposes. Until now, I tried to simulate the 8 and 16 bit registers with char arrays but this approach is driving me nuts, ...
3
votes
3answers
81 views

How does x86 real-mode segments overlap help memory saving?

I'm teaching my 12 y.o. 8086 assembly language and yesterday we were talking memory, addressing and segmentation. I showed him how segments can be visualized as a sequence of overlapping 64Kb blocks ...
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: ...
3
votes
3answers
277 views

Why Some Assembly Instruction Are not Documented

There are some Assembly instruction in Delphi Source Codes which I cannot found anywhere in Assembly Cheat Sheets including: fld fabs fcompp fstsw I read these assembly instructions in "Power" ...
3
votes
5answers
297 views

Moving data from memory to memory in micro controllers

Why can't we move data directly from a memory location into another memory location. Pardon me if I am asking a dumb question, but I think this is a true situation, at least for the ones I've ...
3
votes
3answers
279 views

Intel 8086 Assembly — Squaring a Register

In principle, squaring the value of a register isn't hard: mov ax, [var] mov cx, [var] mul cx // square of answer is in DX:AX But I got to thinking -- the course that I'm learning Assembly ...
3
votes
4answers
293 views

How can a extend memory space at 8086 up to 1 GB?

How can a extend memory space at 8086 up to 1 GB ???
3
votes
2answers
284 views

effect of undefined opcodes on the (original) Intel 8086/88

Since the original 8086 and 8088 do not have a software exception for illegal instructions, how do they behave when fed such, for instance "FF FF" (not an opcode) ? Do they stall, do it reset itself, ...
3
votes
2answers
206 views

Intel 8086 processor

I am taking a hardware class than involves a lab, the lab is about Intel 8086 processors and I have a lab final tomorrow. Other than the information provided in the lab, what other sources can you ...
3
votes
4answers
1k views

ADC instruction in ASM 8086

When I use ADC for exmaple: AL = 01 and BL = 02, and CF = 1 when I make this: ADC AL,BL Will AL be 3 or 4? (with the CF addition or without?)
2
votes
3answers
121 views

8086/88 emulator for ubuntu

I need to emulate assembly for 8086 program in Ubuntu. I searched repository and I found 8085 emulator which is not similar to 8086. Is there any 8086/88 assembly emulator for ubuntu?
2
votes
3answers
139 views

new line in 8086 assembly

I wanna to print table of multiple numbers from 0 to 9 in assembly. so I program below code: data_seg segment I DB 0D J DB 0D R DB ? DIVER DB 10D data_seg ends stack_seg segment ...
2
votes
4answers
90 views

Difference between SHL and SAL in 80x86

I have learned how to work with 80x86 assembler, so in bit-wise shift operation, i faced a problem with SAL and SHL usage. I means the difference between lines of code as follow : MOV X, 0AAH SAL X, ...
2
votes
2answers
96 views

Assembly code help (creating new file) [closed]

I'm new in assembly. I have to do a program that copies the data of an input file to an out put file. but this output file has to be created. The problem is that I cannot create this file which seems ...
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
72 views

why this assembly .com file print 2 non-stop?

this is the assembly code written in .com file for 16 bit machine: it is a code for gcd calculation, have 2 functions: calc_gcd calling to clac_mod. calc_mod works fine and i assume calc_gcd as well, ...
2
votes
1answer
38 views

What does `Var2 DW Var1` mean in TurboShell/TurboAsm?

why does the following code compile perfectly? Data Segment Var1 Dw (any 4 digit hex value) Var2 Dw Var1 Data Ends what does the line "Var2 Dw Var1" even mean? I thought that only an immediate ...
2
votes
1answer
97 views

Basic Question about Stack Segment Declaration

Hey, I am just starting to learn assembly and here's what i don't understand... In the Stack Segment Declaration we use something like TOS LABEL WORD I know TOS refers to the top of the ...
2
votes
2answers
452 views

32 bit binary to ASCII 8086 assembly

I need to convert 32-bit number to ASCII. I don't know how I can do it .... This is the code what I wrote : The biggest number that could convert is 0001FFFF , if I set Dx to 000F and Ax to FFFF the ...
2
votes
1answer
417 views

Hardware interrupt list

Is there any list of the hardware interrupts? i was coding a 16-bit app and i wanted to check some INTs but, i couldnt find anything usefull in google, can any1 provide me some docs about it? if ...
2
votes
2answers
147 views

Variables Behaving Oddly (Intel 8086)

Edit: Answered my own question. See below. -_- I have a variable defined in the .data segment as follows: retVal DW 0100h ;stores hex fraction of the intermediate value. Starts at 1.00 This is ...
2
votes
3answers
161 views

Large binary shifts in 8086 assembly?

I have a binary chunk of data 512 bytes long, I was wondering what the most efficient way would be if I wanted to shift it once to the right. My best guess right now (very new to assembly) would be ...
2
votes
3answers
362 views

Simple question on 8086 assembly language

I'm studying 8086 assembly language at high school and I have this question: For example I have this number ABCD (hex). How is it stored on the memory? Does the AB go for example to memory address ...
2
votes
5answers
733 views

a good 8086 emulator

is there a 8086 emulator for mac. If yes, which is the best
1
vote
2answers
85 views

int 13h ah=08h , What am i doing wrong?

okay, so this is my code.. mov ah,08h mov dl,80h ;have Tried for 81h,82h.... int 13h mov ah,0Eh int 10h ; printing the value in al. int 10h prints the ascii character on screen after ...
1
vote
2answers
176 views

Convert C/C++ to 8086/88 Assembly

Is there any way to convert C/C++ to Assembly not to HEX. Not like something that gcc or other compiler done(C/C++ --> ASM --> HEX). Only Convert It to ASM. Is there any way to do it by gcc,I mean ...
1
vote
1answer
44 views

How to identify end of code segment in MZ exe file?

I have written disassembler for my computer architecture classes and I was wondering if there was any way of knowing where does code segment ends and data segment begins in MZ Exe DOS files (x8086 ...
1
vote
2answers
99 views

Stuck on Maze H.W, info inside. please Assembly emu8086

http://jbwyatt.com/253/a/a5Mazes.htm thats a link to my homework. i have the maze drawn out, and the ending and starting point what confuses me is how to get started on the other tasks. i normally ...
1
vote
2answers
151 views

Reading a number using INT 21h (DOS) & 8086 assmebly

I need to prompt to user a msg that tells him to write a number , then I store this number and do some operation on it After searching in INT 21h I found this : INT 21h / AH=1 - read character from ...
1
vote
1answer
60 views

Does VC++ compile down to Intel machine code or intermediate code?

I am wondering if the function pointers in VC++ can be pointed to a preinitialised memory block containing 8086 machine codem Could I then execute the code at that location using a function pointer ?
1
vote
2answers
106 views

Simplest way to print a character on the screen in 8086 assembly?

Does anyone know the simplest way of writing a single character (or string) to the screen using 8086 real mode assembly (without an OS)? I was thinking that it would be as follows, but that does not ...
1
vote
1answer
53 views

Adding Hex Absolute Address

I have done a few exercises calculating the absolute address when given a CS register and an IP, but now I face a problem with a DS register and a given offset: Given the following hex information ...
1
vote
1answer
437 views

How to get ASCII code of an character in assembly language?

I need to enter a string and to show that string like array of ASCII codes. How can i implement it in assembly language.
1
vote
1answer
284 views

Printing out value of array of numbers-Assembly

Alright so I have this code SortScore PROC call clrscr mov ecx, LENGTHOF studentsAverage dec ecx L1: push ecx mov esi, ...
1
vote
0answers
192 views

Issue with robot exploration in Assembly (emu8086)

I'm working on an assembly program using the emu8086. The program uses the built-in robot device to emulate a virtual robot on a simulated 6x9 map. The map will contain unknown amounts of walls and ...
1
vote
2answers
148 views

Register indirect addressing

I would like to know if there is a difference between: MOV [BX] + 20, AX and MOV [BX + 20], AX My reasoning is that for the 1st case, we move the value of AX + 20 into the address BX And for ...
1
vote
1answer
209 views

simple 8086 compare instruction problem

recently i have a 8086 assembly homework to finish, i try to use the CMP instruction , but can't get it right.here is the code: MOV AL, 88h CMP AL, 24h JL exit label: mov al,4h exit: ...
1
vote
1answer
117 views

8086 assembly language

what is the significance of mov ax,@data Why do we write it?
1
vote
2answers
320 views

NASM on DOS (Intel 8086): invalid effective address

I am writing code for DOS using Bochs. I am compiling the program using NASM Lets suppose i have the following code: [BITS 16] SEGMENT code ..start: mov ax, data mov ds, ax mov bx, msg mov al, ...
1
vote
1answer
235 views

When Will the Code Under DATA SEGMENT execute in this code?

I am a beginner of Assembly Programming... I surfed a lot in google. There is a lot of information, but I still do not understand the following code. I would be grateful if someone could explain MOV ...
1
vote
2answers
254 views

An array as a parameter of a function in 8086 assembly

I want to pass an array of bytes (or the pointer to that array) to a function in 8086 assembly. When I try to PUSH that pointer, it gives me a compilation error. The error is "Wrong parameters". ...

1 2 3