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
760 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 ...
2
votes
4answers
506 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 ...
1
vote
2answers
79 views

Assembler jump in Protected Mode with GDT

I am currently playing around with x86 Assember in order to sharpen my low-level programming skills :). Currently, I am facing a little problem with the addressing scheme in 32-Bit Protected Mode. ...