mirror of
https://github.com/mi57730/a2d.git
synced 2025-04-04 06:29:33 +00:00
Move STF files up into DA directory
This commit is contained in:
parent
fefe806842
commit
0428643cba
@ -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
|
||||
|
@ -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:
|
@ -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
|
@ -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.
@ -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:
|
Loading…
x
Reference in New Issue
Block a user