Tagged Questions

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
613 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
72 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
191 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
135 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
100 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
112 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
2answers
572 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
2answers
108 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
409 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
182 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
5answers
3k views

Printing out a number in assembly language?

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