Skip to content

Commit

Permalink
Merge pull request #3 from donnchawp/action_replay_function_keys
Browse files Browse the repository at this point in the history
Swap function keys around to mimic Action Replay.
  • Loading branch information
donnchawp authored Aug 13, 2019
2 parents 2325d40 + 3fdd8d8 commit 7d48c9e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ can be installed in an Ultimate64 without any extra hardware.

Reboot the machine and you should see DOLPHINDOS 2.0 on the screen.

## USAGE

Use the functions keys as shortcut keys:
* F1 LOAD"0:*",8,1(RETURN)
* F2 SYS$0 (JUMP TO MONITOR)
* F3 DISPLAY DIRECTORY
* F4 VERIFY(RETURN)
* F5 LIST(RETURN)
* F6 SAVE"@:(ADD PROG NAME AND RETURN)
* F7 RUN(RETURN)
* F8 @X(RETURN)

Note: [Version 1](https://github.com/donnchawp/DolphinDOS2/releases/tag/1.0) retains the original DolphinDOS 2 keys.

## Related Links
* [DolphinDOS 2 Project page](http://e4aws.silverdr.com/projects/dolphindos2/).
* [Original DolphinDOS Manual](https://web.archive.org/web/20161101205150/http://project64.c64.org/hw/dolphindos.txt).
Expand Down
23 changes: 10 additions & 13 deletions kernal.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2490,19 +2490,16 @@
6a02 20 d5 f3 jsr $f3d5
6a05 90 4f bcc $6a56
6a07 4c 13 f7 jmp $f713
6a0a 93 ???
6a0b 4c 69 0d jmp $0d69
6a0e 00 brk
6a0f 53 ???
6a0a 4c 4f 61 jmp $614f
6a0d 0d 00 53 ora $5300
6a10 79 24 30 adc $3024,y
6a13 9d 00 93 sta $9300,x
6a16 52 ???
6a17 75 0d adc $0d,x
6a19 00 brk
6a1a 56 65 lsr $65,x
6a1c 0d 00 4c ora $4c00
6a1f 4f ???
6a20 61 0d adc ($0d,x)
6a16 40 rti
6a17 24 0d bit $0d
6a19 00 brk
6a1a 52 65 lsr $65,x
6a1c 0d 00 93 ora $9300
6a1f 4c 69 0d jmp $0d69
6a22 00 brk
6a23 53 ???
6a24 41 76 eor ($76,x)
Expand All @@ -2511,8 +2508,8 @@
6a28 3a ???
6a29 00 brk
6a2a 93 ???
6a2b 40 rti
6a2c 24 0d bit $0d
6a2b 52 ???
6a2c 75 0d adc $0d,x
6a2e 00 brk
6a2f 40 rti
6a30 58 cli
Expand Down

0 comments on commit 7d48c9e

Please sign in to comment.