Move STF files up into DA directory

This commit is contained in:
Joshua Bell 2017-09-04 12:56:41 -07:00
parent fefe806842
commit 0428643cba
11 changed files with 21 additions and 1846 deletions

View File

@ -3,11 +3,21 @@ Disassembly of the desk accessories:
* Calculator - _not started_
* Date - _not started_
* Puzzle - _not started_
* [Show Text File](show.text.file) - in progress!
* [Show Text File](show_text_file.s) - in progress!
* Sort Directory - _not started_
## Desk Accessory Details
* Loaded at $800 through (at least) $14FF
* Copy themselves from Main into Aux memory (same location)
* Can call into ProDOS MLI and A2D entry points ($4000, $8E00)
* Can call into ProDOS MLI and A2D entry points ($4000, etc)
## Process
* `go.sh` - bash script used to drive the initial disassembly
(now commented out) and building
* `*.bin` - original binary (type $F1, start $800)
* `*.info` - da65 "info" file - used to inform disassembly
* `*.s` - source (originally generated using da65, now modified)
* `*` - linked target - byte-for-byte identical with original

View File

@ -1,8 +1,8 @@
.setcpu "65C02"
.org $800
.include "../../inc/prodos.inc"
.include "../../inc/auxmem.inc"
.include "../inc/prodos.inc"
.include "../inc/auxmem.inc"
.include "a2d.inc"
;; Big questions:

View File

@ -5,12 +5,12 @@ set -e
CC65=~/dev/cc65/bin
original=show_text_file.bin
disasm=stf.d
disasm=show_text_file.d
src=stf.s
obj=stf.o
list=stf.list
out=stf
src=show_text_file.s
obj=show_text_file.o
list=show_text_file.list
out=show_text_file
# Origin of STF
#echo ' .org $800' > $disasm

View File

@ -1,11 +0,0 @@
Disassembly of the Show Text File desk accessory
* `go.sh` - bash script used to drive the initial disassembly
(now commented out) and building
* `show_text_file.bin` - original binary (type $F1, start $800)
* `show_text_file.info` - da65 "info" file
* `stf.s` - source (originally generated using da65, now modified)
* `stf.o` - object file (assembled with ca65)
* `stf.list` - listing file (output by ca65)
* `stf` - linked target - byte-for-byte identical with original

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,8 +1,8 @@
.setcpu "65C02"
.org $800
.include "../../inc/prodos.inc"
.include "../../inc/auxmem.inc"
.include "../inc/prodos.inc"
.include "../inc/auxmem.inc"
.include "a2d.inc"
;; Big questions: