Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/returninfinity/baremetal-os-legacy
BareMetal is a 64-bit OS for x86-64 based computers. The OS is written entirely in Assembly while applications can be written in Assembly, C/C++, and Rust.
https://github.com/returninfinity/baremetal-os-legacy
assembly baremetal
Last synced: about 2 months ago
JSON representation
BareMetal is a 64-bit OS for x86-64 based computers. The OS is written entirely in Assembly while applications can be written in Assembly, C/C++, and Rust.
- Host: GitHub
- URL: https://github.com/returninfinity/baremetal-os-legacy
- Owner: ReturnInfinity
- Archived: true
- Created: 2011-05-20T17:44:13.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-11-20T15:29:43.000Z (almost 7 years ago)
- Last Synced: 2024-09-26T03:41:26.240Z (about 2 months ago)
- Topics: assembly, baremetal
- Language: Assembly
- Homepage:
- Size: 1.05 MB
- Stars: 1,743
- Watchers: 214
- Forks: 303
- Open Issues: 23
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# BareMetal OS -- a 64-bit OS written in Assembly for x86-64 systems #
This repo is no longer updated. Development of the BareMetal kernel has moved to https://github.com/ReturnInfinity/BareMetal-kernel
Copyright (C) 2007-2017 Return Infinity -- see LICENSE.TXT
BareMetal is a 64-bit OS for x86-64 based computers. The OS is written entirely in Assembly, while applications can be written in Assembly, C/C++, and Rust. Development of the Operating System is guided by its 3 target segments:
* **High Performance Computing** - Act as the base OS for a HPC cluster node. Running advanced computation workloads is ideal for a mono-tasking Operating System.
* **Embedded Applications** - Provide a platform for embedded applications running on commodity x86-64 hardware.
* **Education** - Provide an environment for learning and experimenting with programming in x86-64 Assembly as well as Operating System fundamentals.BareMetal is a 64-bit protected mode operating system for x86-64 compatible PCs, written entirely in assembly language, which boots from a hard drive or via the network. It features a command-line interface, support for [BMFS-formatted](https://github.com/ReturnInfinity/BMFS) hard drives and sound via the PC speaker. It can load external programs and has over 60 system calls. BareMetal can also utilize all available CPU's in the computer it is run on.
At the moment there is no plan to build BareMetal into a general-purpose operating system like Windows, Mac OS X, or Linux; it is designed to be as lean as possible while still offering useful features.
The complete documentation for BareMetal, including instructions on running it, building it and writing your own programs for it can be found in the docs/ directory.
See LICENSE.TXT for redistribution/modification rights, and CREDITS.TXT for a list of people involved.
Ian Seyler ([email protected])