Documentation

Preliminary organization
This commit is contained in:
nathanriggs 2019-01-05 16:07:18 -05:00
parent 03636aa196
commit 25c9affb02
2 changed files with 86 additions and 69 deletions

View File

@ -1,27 +1,44 @@
# AppleIIAsmLib
A general purpose ASM libriary for the Apple II. Assembled in Merlin 8 Pro
---
## Table of Contents
* Introduction
* Disk Overviews
* Disk 1: STDIO
*
* Macro Subroutine Overlap Table
* Detailed Descriptions: Macros
* Detailed Descriptions: Subroutines
---
## Introduction
This is a general purpose library in 6502 Assembly for the Apple II. I am learning both Git and Assembly for the first time as I create, update and maintain this, so expect some mishaps: wasted CPU cycles, weird documentation, accidental catastrophes, and so on. I am using Merin 8 Pro (DOS 3.3) for this project, but this should be fairly easy to convert to other assemblers as well as other 6502-based systems.
Ultimately, my aim is to create a large enough collection of routines to address any domain of development for the Apple II family in Assembly. I will be heavily relying on texts like Roger Wagner and Chris Torrence's _Assembly Lines_ and Lance Leventhal's _6502 Assembly Language Routines_, as well as a plethora of online sources. I'll do my best to acknowledge when a routine is inspired by (or mostly copied from) another source, and will exclude them from the Appache License 2.0 when necessary. If you find your own source here, but would rather it not be here, please reach out to me and I'll remove it immediately.
Planned libraries include, along with associated Macros:
CORE DISK
* stdio.lib: Standard Input/Output library.
* XPRINT
* DPRINT
* THLIN
* TVLIN
* CURSFOR
* CURSBAK
* CURSDN
* CURSUP
* TFILLA
* SINPUT
* GPBX
* common.lib: Common, useful subroutines: memory swaps, etc.
---
## Disk Overviews
Disk 1: STDIO
* stdio.mac: Standard Input/Output library.
* PRN: Flexible (screen) Printing routine
* PCR: Print Carraige Return
* INP: String Input Macro
* SCPOS: Set Cursor position at X,Y
* SETCX: Set Cursor Horizontal Position
* SETCY: Set Cursor Vertical Position
* CURF: Move Cursor Forward by [n] spaces
* CURD: Move Cursor Down by [n] spaces
* CURU: Move Cursor Up by [n] spaces
* CURB: Move Cursor Backward by [n] spaces
* RCPOS: Read Cursor Position
* PDL: Read Current Paddle State
* PBX: Read State of Paddle Button [x]
* THLIN: Text Horizontal Line Fill with Character [n]
* TVLIN: Text Vertical Line Fill with Character [n]
* TFILL: Text Fill square [x1],[x2],[y1],[y2] with Character [n]
Disk 2: COMMON / REQUIRED
* common.mac: Common, useful subroutines: memory swaps, etc.
* MEMFILL
* MEMMOVE
* DELAYMS

View File

@ -10,77 +10,77 @@ Planned libraries include, along with associated Macros:
CORE DISK
* stdio.lib: Standard Input/Output library.
..* XPRINT
..* DPRINT
..* THLIN
..* TVLIN
..* CURSFOR
..* CURSBAK
..* CURSDN
..* CURSUP
..* TFILLA
..* SINPUT
..* GPBX
* XPRINT
* DPRINT
* THLIN
* TVLIN
* CURSFOR
* CURSBAK
* CURSDN
* CURSUP
* TFILLA
* SINPUT
* GPBX
* common.lib: Common, useful subroutines: memory swaps, etc.
..* MEMFILL
..* MEMMOVE
..* DELAYMS
..* ZSAVE
..* ZLOAD
* MEMFILL
* MEMMOVE
* DELAYMS
* ZSAVE
* ZLOAD
MATH DISK
* math8.lib: 8-bit Integer Math Library.
..* RND8
..* RANDB
..* MUL8
..* DIV8
* RND8
* RANDB
* MUL8
* DIV8
* math16.lib: 16-bit Integer Math Library.
..* ADD16
..* SUB16
..* MUL16
..* SDIV16
..* UDIV16
..* SREM16
..* UREM16
..* CMP16
..* RND16
* ADD16
* SUB16
* MUL16
* SDIV16
* UDIV16
* SREM16
* UREM16
* CMP16
* RND16
IO DISK
* fileio.lib: File Input/Output Library.
..* BSAVE (may be deleted)
..* BLOAD (may be deleted)
..* TMODE
..* CMD
..* FPRINT
..* FPSTR
..* FINPUT
* BSAVE (may be deleted)
* BLOAD (may be deleted)
* TMODE
* CMD
* FPRINT
* FPSTR
* FINPUT
* in the future, serial routines will also reside here.
ARRAYS DISK
* arrays81.lib: library for managing 1-dimensional 8-bit arrays.
..* DIM81
..* AGET81
..* APUT81
* DIM81
* AGET81
* APUT81
* arrays82.lib: library for managing 2-dimensional 8-bit arrays.
..* DIM82
..* AGET82
..* APUT82
* DIM82
* AGET82
* APUT82
* 16-bit array libraries will also be on this disk in the future
STRINGS DISK
* strings.lib: Library for managing strings.
..* STRCOMP
..* STRCAT
..* ASC2STR
..* STR2ASC
..* PRNSTR
..* NUM2STR
..* STR2NUM
* STRCOMP
* STRCAT
* ASC2STR
* STR2ASC
* PRNSTR
* NUM2STR
* STR2NUM
* substrings.lib: Library for manipulating substrings.
..* SUBPOS
..* SUBCOPY
..* SUBDEL
..* SUBINS
* SUBPOS
* SUBCOPY
* SUBDEL
* SUBINS
~~LORES DISK~~
* ~~lores.lib: Library for fast(er) graphics in low resolution mode.~~