Tagged Questions
The real-mode tag has no wiki summary.
6
votes
2answers
904 views
Grub and getting into Real Mode (low level assembler question)
I've been working on a toy OS and have been using grub as my boot loader. Recently when trying to use VGA I found that I couldn't use hardware interrupts. This I found was because I had been slung ...
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 ...
4
votes
2answers
71 views
Real-Mode x86 ASM: How are the Basics Done?
I'm currently reading the boot.s file in the source for the first ever Linux kernel (assuming that 0.01 is indeed the first public release).
I know C and ASM, the latter considerably less than the ...
3
votes
2answers
189 views
questions about writing an operating system
I have some very specific questions about writing operating systems that I was hoping could get answered:
How much assembly code would I need to write to load a minimal C Kernel if I use GRUB as a ...
3
votes
1answer
131 views
Did I correctly set up the stack segment in real mode?
Im writing a bootloader and I set up my stack up as such...
STACK_SEGMENT equ 0x0050
STACKP_OFFSET equ 0x03FF
mov ax, STACK_SEGMENT
mov ss, ax
mov sp, STACKP_OFFSET
Am I allocating 1024 bytes of ...
2
votes
1answer
96 views
Call Int 13h in a ISR
I have written a ISR for int 9h by assembly in Real Mode.
In this ISR, I call INT 13h, AH=0x02 for writing some data on Hard Disk. But data aren't written on Hard Disk. Also int 13h, ah=0x02 doesn't ...
2
votes
4answers
109 views
Is it possible to use 32 bits registers/instructions in real mode?
I'm confused about a simple assembly problem when studying some simple os source code.
In this website: http://wiki.osdev.org/Babystep7 the following code is to switch from real mode to protected ...
2
votes
1answer
265 views
16 bit C code for real mode kernel
I don't know how to compile my C kernel for 16 bit real mode. I have tried a variety of compilers with no luck. My bootloader simply loads raw sectors from the floppy (my kernel lives right after the ...
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.
...
2
votes
3answers
1k views
Is it possible to shutdown linux kernel and resume in Real Mode?
Let's say I'd like to start a small linux distro before my ordinary operating system start.
BIOS load MBR and execute MBR.
MBR locates the active partition which is my linux partition.
Linux start ...
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
3answers
191 views
Where to find the reference of dos.h for the c programming language?
I'm looking for the reference/documentation of the dos.h API.
(especially for an openwatcom specific version).
Where to get the documentation?
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 ...
1
vote
1answer
180 views
Where is a list of I/O ports used in real-mode code?
I am looking at some existing real-mode code that uses the in and out assembly instruction.
I recognize a few, but I don't know what most of the different ports in the instructions are related to.
...
0
votes
1answer
44 views
Updating variable that lives in the data segment from the stack and its segment
I currently have three segments of memory, my main data segment, stack segment and the segment where my API lives. The following instructions are executed from the data segment, they push the address ...
0
votes
1answer
25 views
Can I get some info on real mode segments
I have been trying to understand segmented memory and I came across this statement on this website: website. The first sentence is the most confusing to me..
"Interesting to note is the fact that ...
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