Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomlin7/bill
x64 Operating System Kernel
https://github.com/tomlin7/bill
assembly hacktoberfest operating-system operating-system-kernel os
Last synced: about 2 months ago
JSON representation
x64 Operating System Kernel
- Host: GitHub
- URL: https://github.com/tomlin7/bill
- Owner: tomlin7
- Created: 2021-09-07T20:01:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-06T09:36:47.000Z (12 months ago)
- Last Synced: 2024-05-11T05:54:57.016Z (9 months ago)
- Topics: assembly, hacktoberfest, operating-system, operating-system-kernel, os
- Language: Assembly
- Homepage:
- Size: 3.99 MB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BILL đŋ
[![build iso](https://github.com/billyeatcookies/bill/actions/workflows/docker-image.yml/badge.svg)](https://github.com/billyeatcookies/bill/actions/workflows/docker-image.yml) ![issues open](https://img.shields.io/github/issues/billyeatcookies/bill) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/billyeatcookies/bill)BILL is a x64 operating system kernel program under heavy development
![image](https://user-images.githubusercontent.com/70792552/160350152-623b5f75-00d8-4493-bf5c-11498d8c82ad.png)
## Emulation đšī¸
Use [QEMU](https://www.qemu.org/download/) to emulate BILL.
Get the iso file builds from Github actions [nightly builds](https://github.com/billyeatcookies/bill/actions)```bash
qemu-system-x86_64 -cdrom dist/x86_64/kernel.iso
```## Building đ ī¸
You will need [docker](https://www.docker.com) to build from the source.
```bash
docker build buildenv -t bill-buildenv
docker run --rm -it -v "%cd%":/root/env bill-buildenv
make build-x86_64
```
> **Note**
> For using powershell, replace second command
> ```ps
> docker run --rm -it -v "${pwd}:/root/env" bill-buildenv
> ```
This will build the iso files to `dist/x86_64/`