https://github.com/28ritu/bootloader
https://github.com/28ritu/bootloader
bootloader operating-system
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/28ritu/bootloader
- Owner: 28Ritu
- Created: 2018-05-04T17:32:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T17:50:11.000Z (over 7 years ago)
- Last Synced: 2025-02-14T17:42:53.807Z (8 months ago)
- Topics: bootloader, operating-system
- Language: Assembly
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bootloader
## Operating Systems Assignment-3
(Group No.-32)
Sneha Sinha: 2016098
Ritu Kumari: 2016078### To run the code
nasm -f bin main.asm -o boot && qemu-system-x86_64 -fda boot### Description Of Code
1. We are switching directly to the long mode (64-bit and protected) from the real mode (16-bit).
2. It also checks whether the CPU supports long mode or not.
3. Displays "Hello World" and CR3 register contents.