Tagged Questions

3
votes
6answers
995 views

How do I identify device specific interrupts on x86?

In the Intel software developers manual it says that interrupt vectors 32-255 are usually user defined for external IO devices. In my systems programming class I must develop a simple device driver. ...
2
votes
1answer
165 views

Why would an end-of-interrupt for the master PIC cause a triple fault (reboot)?

Ok, in school we are developing an operating system. My project has been to develop an ATA hard disk driver. I thought I had my interrupt service routine working quite well when my professor pointed ...
1
vote
1answer
183 views

Assembly. Stop system time

I have a task for my Assembly course to stop system time while pressing Alt-button. I do it by disabling the 8th interrupt. As I understand system time is saved in the 40:6ch cell of memory, so by ...
1
vote
1answer
517 views

Extended Interrupt 13, Reading an unformatted Disk

It's been a while since I did any ASM, and decided to once again try and write a small bootloader, testing with qemu. My issue is with interupt 13, for some reason the carry flag is being set, so the ...
1
vote
2answers
543 views

How could an assembly OUTB function cause a triple fault?

In my systems programming class we are working on a small, simple hobby OS. Personally I have been working on an ATA hard disk driver. I have discovered that a single line of code seems to cause a ...
0
votes
1answer
67 views

work with BIOS interrupts that execute by bootloader

I want to work with directory and subfolder and I want to do it by bootloader but most of existing interrupts are available in dos mode How can I find BIOS interrupts?
0
votes
1answer
54 views

How can I clear the screen without having to fill it

Does an interrupt service routine exist to help me clear the screen of the terminal? Will it work on windows?
0
votes
2answers
77 views

Interrupt Controller's In-Service Register bits when a non-maskable interrupt occurs

I have the following question (regarding x86 architecture): What happens when a non-maskable interrupt (e.g. NMI) interrupts a maskable interrupt which is in progress? Does the corresponding ISR ...
0
votes
2answers
435 views

x86 interrupt based assembly variable access problem

I have a (seemingly) simple question to read in a string and print it out again using x86 interrupt based assembly. The problem i'm having is accessing the string that has been read in properly. The ...
0
votes
1answer
50 views

Not handling IA32 exception?

What happens if i.e, in the IDT entry 0, I set the P (Present) bit to zero? That translate to not handling a possible zero division. Suppose the CPU does a zero division... what happens in this ...