This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
piquant/README.md

44 lines
1.1 KiB
Markdown
Raw Normal View History

2016-03-27 12:19:45 -07:00
[![Build Status](https://travis-ci.org/akesterson/piquant.svg?branch=master)](https://travis-ci.org/akesterson/piquant)
2016-03-27 12:17:44 -07:00
2015-01-25 17:53:17 -08:00
Piquant
====
Piquant is a little toy operating system I'm building.
Why?
=====
Because it's fun. Don't you like to have fun? Ogre.
What does it do?
=====
2015-01-27 18:56:12 -08:00
Right now, not much of anything at all. It boots from a 1.44mB floppy disk, and enters into a BASIC interpreter, just like your favorite home computers of the 70s/80s!
2015-01-25 17:53:17 -08:00
![Image of Piquant v0.1](media/screenshot.png)
2015-01-27 18:56:12 -08:00
Currently the BASIC only understands simple, 1-digit arithmetic expressions. But this will soon change; I intend to implement at least as many features as uBASIC, maybe QuickBASIC eventually.
2015-01-25 17:53:17 -08:00
How can I run it?
=====
You have to build it to run it. To build it, you need:
* bcc (bruce's c compiler - check your OS's package repositories)
* nasm
* gnu make
* ld86, objdump86, as86
To run it, you can use anything, but the makefile assumes you have 'bochs' installed.
2016-03-27 12:26:33 -07:00
make clean run
2015-01-25 17:53:17 -08:00
2016-03-27 12:26:33 -07:00
This will rebuild all of the sources and fire up the bochs emulator. Have fun.
Developing & Testing
=======
To run the unit tests:
make test