From e85c7ef0b9175e58b03bab68d041b1abfa975256 Mon Sep 17 00:00:00 2001 From: Zellyn Hunter Date: Mon, 12 Sep 2016 22:06:45 -0400 Subject: [PATCH] Add license and readme --- LICENSE.txt | 21 +++++++++++++++++++++ README.org | 22 ++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 LICENSE.txt create mode 100644 README.org diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..222aebc --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Zellyn James Hunter + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.org b/README.org new file mode 100644 index 0000000..010fd83 --- /dev/null +++ b/README.org @@ -0,0 +1,22 @@ +* Apple II Audit + +This repository contain routines to audit Apple II computers (II, II+, +IIe, IIc), providing information about hardware, ROM versions, RAM +configuration, and behavior. + +Eventually, it should comprise an emulator test suite, enabling +emulator writers to systematically identify and eliminate perceptible +differences from real hardware. If a difference visible to code can be +found, a test should be added to this suite. + +** Status + +I'm just getting started, currently working on: + +- experimenting with toolchains for automation +- preliminary floating-bus vsync examples +- sha1sum assembly code + +This test suite is a step on the way to implementing Apple IIe +(enhanced) support in [[http://openemulatorproject.github.io/][OpenEmulator]]: I may alternate adding tests here +and features there.