https://github.com/returninfinity/baremetal-demo
Various demo and test programs
https://github.com/returninfinity/baremetal-demo
Last synced: 1 day ago
JSON representation
Various demo and test programs
- Host: GitHub
- URL: https://github.com/returninfinity/baremetal-demo
- Owner: ReturnInfinity
- License: mit
- Created: 2020-01-27T18:41:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-03T21:07:55.000Z (12 months ago)
- Last Synced: 2025-04-03T22:22:48.256Z (12 months ago)
- Language: C
- Homepage:
- Size: 516 KB
- Stars: 20
- Watchers: 4
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BareMetal Demo
Various test/example programs for BareMetal OS.
## Prerequisites
The scripts in this repo depend on a Debian-based Linux system like [Ubuntu](https://www.ubuntu.com/download/desktop) or [Elementary](https://elementary.io). macOS is also supported if you are using [Homebrew](https://brew.sh).
- [NASM](https://nasm.us) - Assembly compiler to build the apps written in Assembly.
- [GCC](https://gcc.gnu.org) - C compiler for building C/C++ applications.
In Linux this can be completed with the following command:
sudo apt install nasm gcc
// EOF