Tagged Questions

5
votes
1answer
612 views

Running code on different processor (x86 assembly)

In real mode on x86, what instructions would need to be used to run the code on a different processor, in a multiprocessor system? (I'm writing some pre-boot code in assembler that needs to set ...
2
votes
2answers
196 views

how does cpu calculate 20-bit address in real mode

i know it uses physical address = segment register << 4 + offset register. Although these two registers are 16-bits, how can 8086 handle a 20-bit plus operation?
2
votes
2answers
569 views

Alter Interrupt in 16 bit Real Mode

I'm trying to alter my interrupt table to take over the keyboard interrupt. My end goal is to write my new interrupt routine, copy myself into RAM and make the real-mode interrupt table point to me. ...
1
vote
0answers
53 views

Real Mode x86 simulator similar to SPIM?

I am looking for a Real Mode x86 simulator similar in principle to the MIPS32 simulator "SPIM". Ideally, it would also support 286 Protected Mode (32 bit Protected Mode is less important). Anyone ...
1
vote
2answers
106 views

Concerning real mode physical memory addressing

Me and my friend were brainstorming about a question concerning physical memory addressing in real mode and we couldn't wrap our heads around it. Here goes. In real mode 16 is multiplied to the ...
1
vote
2answers
405 views

Real mode memory addressing explaination

I am reading about memory addressing.I read about segment offset and then about descriptor offeset. I know how to calculate the exact add in real mode. all this is ok, but i am unable to understand ...
0
votes
2answers
205 views

Looking for 16-bit c compiler for x86

I am working on porting uc/OS-II from DOS to x86 (real mode). I need: (1) A compiler generate real mode 16-bit x86 assembly (2) An assembler assemble the generated assembly into object file (3) A ...
0
votes
5answers
3k views

Printing out a number in assembly language?

mov al,10 add al,15 How do I print the value of 'al'?