mirror of
https://github.com/mi57730/a2d.git
synced 2025-04-04 06:29:33 +00:00
Add keyboard docs
This commit is contained in:
parent
077b0b5ccb
commit
9d4656f7b9
26
desktop/Makefile
Normal file
26
desktop/Makefile
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
CC65 = ~/dev/cc65/bin
|
||||
CAFLAGS = --target apple2enh --list-bytes 0
|
||||
CCFLAGS = --config apple2-asm.cfg
|
||||
|
||||
TARGETS = s0_loader.built s123_aux.built s4_main1.built
|
||||
|
||||
.PHONY: clean all
|
||||
all: $(TARGETS)
|
||||
|
||||
HEADERS = $(wildcard ../*.inc) $(wildcard ../inc/*.inc) $(wildcard *.inc)
|
||||
|
||||
clean:
|
||||
rm -f *.o
|
||||
rm -f $(TARGETS)
|
||||
|
||||
%.o: %.s $(HEADERS)
|
||||
$(CC65)/ca65 $(CAFLAGS) --listing $(basename $@).list -o $@ $<
|
||||
|
||||
%.built: %.o
|
||||
$(CC65)/ld65 $(CCFLAGS) -o $@ $<
|
||||
|
||||
check:
|
||||
diff s0_loader.built orig/DESKTOP2_s0_loader
|
||||
diff s123_aux.built orig/DESKTOP2_s123_aux
|
||||
diff s4_main1.built orig/DESKTOP2_s4_main1
|
44
keyboard.md
Normal file
44
keyboard.md
Normal file
@ -0,0 +1,44 @@
|
||||
# Keyboard Control
|
||||
|
||||
OA = Open Apple
|
||||
|
||||
## Windows
|
||||
|
||||
* OA-W - Activate window; Left/Right Arrows to navigate
|
||||
* OA-G - Resize window; Arrows to resize, Return to finish
|
||||
* OA-M - Move window; Arrows to move, Return to finish
|
||||
* OA-X - Scroll contents; Arrows to scroll, Esc or Return when done
|
||||
|
||||
## Icons
|
||||
|
||||
* OA-H - Highlight icon; Left/Right Arrows to navigate, Esc or Return when done
|
||||
* OA-A - Select all icons
|
||||
|
||||
## Menus
|
||||
|
||||
* Escape - menu mode; Arrows to navigate, Return to select
|
||||
|
||||
## Shortcuts
|
||||
|
||||
* OA-F - New Folder
|
||||
* OA-O - Open
|
||||
* OA-C - Close
|
||||
* OA-B - Close All
|
||||
* OA-A - Select All
|
||||
* OA-Y - Copy a File
|
||||
* OA-D - Delete a File
|
||||
* OA-E - Eject
|
||||
* OA-Q - Quit
|
||||
|
||||
* OA-J - View By Icon
|
||||
* OA-N - View By Name
|
||||
* OA-T - View By Date
|
||||
* OA-K - View By Size
|
||||
* OA-L - View By Type
|
||||
|
||||
* OA-S - Format a Disk
|
||||
* OA-Z - Erase a Disk
|
||||
* OA-I - Get Info
|
||||
|
||||
* OA-0 - Run Selector
|
||||
* OA-1-9 - Selector Entries
|
Loading…
x
Reference in New Issue
Block a user