Updating web site and rearranging a bit to save space per #6.

This commit is contained in:
Rob Greene 2017-11-08 13:27:22 -06:00
parent 5cdcaa63e0
commit d7f2631434
3 changed files with 24 additions and 20 deletions

2
.gitignore vendored
View File

@ -18,3 +18,5 @@ mac/AppleCommander.app/Contents/Info.plist
.settings/org.eclipse.jdt.core.prefs .settings/org.eclipse.jdt.core.prefs
build/ACBuild.properties build/ACBuild.properties
build/AppleCommander.preferences build/AppleCommander.preferences
*.o
*.lst

View File

@ -10,10 +10,13 @@
; Assemble this code with the cc65 toolchain: ; Assemble this code with the cc65 toolchain:
; ;
; cl65 AppleCommander-boot.s -t none --start-addr $0800 ; cl65 -t none --start-addr 0x0800 -l AppleCommander-boot.lst AppleCommander-boot.s
; then copy resulting AppleCommander-boot to: ; then copy resulting AppleCommander-boot to:
; .../src/com/webcodepro/applecommander/storage/AppleCommander-boot.dump ; .../src/com/webcodepro/applecommander/storage/AppleCommander-boot.dump
; ;
; Note that this command will hexdump a useful format for pasting and testing...
; hexdump -e '"08%02.2_ax:" 16/1 "%02x " "\n"' AppleCommander-boot
;
; Define as ASCII string with no attributes ; Define as ASCII string with no attributes
.macro asc Arg .macro asc Arg
@ -144,16 +147,15 @@ SETUP:
ROTATE: ROTATE:
TXA TXA
JSR CALCADDR JSR CALCADDR
LDY #0 LDY #39
LDA (ADDR),Y LDA (ADDR),Y
PHA PHA
SHIFT: SHIFT:
INY
LDA (ADDR),Y
DEY DEY
STA (ADDR),Y LDA (ADDR),Y
INY INY
CPY #39 STA (ADDR),Y
DEY
BNE SHIFT BNE SHIFT
PLA PLA
STA (ADDR),Y STA (ADDR),Y
@ -198,7 +200,7 @@ DATA2:
; ;
MESSAGE: MESSAGE:
asccr "APPLECOMMANDER CREATED THIS DISK" asccr "APPLECOMMANDER CREATED THIS DISK"
asccr "VISIT APPLECOMMANDER.SF.NET" asccr "VISIT APPLECOMMANDER.GITHUB.IO"
.byte $8d .byte $8d
asc "INSERT ANOTHER DISK AND PRESS ANY KEY" asc "INSERT ANOTHER DISK AND PRESS ANY KEY"
.byte $00 .byte $00