Add READMEs for Software

This commit is contained in:
Matt Harlum 2023-02-23 11:11:40 +00:00
parent f6ceef3757
commit 48a4d0e00c
3 changed files with 41 additions and 0 deletions

12
Software/addram/README.md Normal file
View File

@ -0,0 +1,12 @@
# Addram
A tool to add the BonusRAM ($A0000) to the system
## Usage
```
-d - Perform a dry-run
-v - Verbose
-m - Attempt to merge Bonus RAM with Fast RAM Memory block
-p <priority> - Set Fast / BonusRAM Priority
```

View File

@ -0,0 +1,10 @@
# BootROM
A resident module that adds the BonusRAM ($A0000) to the system
This will automatically add the $A0000 RAM to your system's memory pool if Fast RAM is enabled
If the Left mouse-button is held at boot it will not run
## Usage
Add to your extended rom using Remus or Romtool

19
Software/cflash/README.md Normal file
View File

@ -0,0 +1,19 @@
# CFLASH
A tool to program the Kickstart and IDE Flash of the CIDER board.
## Usage
```
Usage: cflash [-fieEvV] [-c|-f <kickstart rom>] [-0|1] -s [0|1]
-c - Copy physical ROM to Flash.
-f <kickstart file> - Kickstart file to Flash or verify.
-i - Print Flash device id.
-I <ide rom file - Flash IDE ROM.
-e - Erase bank.
-E - Erase chip.
-v - Verify bank against file or ROM
-V - Skip verification after programming.
-0 - Select bank 0 - $FO Extended ROM.
-1 - Select bank 1 - $F8 Kickstart ROM.
-s [0|1] - Select kickstart slot to work on.
```