Tagged Questions

6
votes
2answers
2k views

Can someone explain this directly assembled x86 JMP opcode?

At school we have been using a bootstrap program to run stand-alone programs without an operating system. I have been studying this program and when protected mode is enabled there is a far jump ...
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 ...
5
votes
2answers
2k views

x86 assembly Protected mode Keyboard Access

So I'm working on keyboard input for a very bare bones kernel that I'm throwing together, and I'm completely stuck. I can't seem to find any information online that can tell me the information I need ...
2
votes
4answers
502 views

Are there any instructions in x86 assembly that exist only in 64-bit mode?

Some old x86 instructions are undefined in 64-bit mode. For instance LDS, LES and LSS, or short opcodes of the INC r16 (40 + rw) and INC r32 (40 + rd) instructions. Are there any instructions that ...
0
votes
1answer
95 views

about hardware drivers in protected mode

Recently, I'm trying to write a simple OS. This is a big project. when I'm writing my code, I'm wondering how modern OS contact hardware under protected mode In real mode, we can just call the bios ...