-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This pull-request got out of hand, but it closes #30 by adding a CCP to the CP/M emulator: * When launched with no arguments the CCP is launched. * Otherwise we run as we did in the past. * There is support for using subdirectories as drives now too. * I've added some more documentation to samples/ * I've added dist/ with games * Some TODOS are added, and tests.
- Loading branch information
Showing
16 changed files
with
2,044 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ccp.bin: ccp.asm | ||
pasmo ccp.asm ccp.bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# CCP | ||
|
||
This directory contains the CCP we bundle within our emulator: | ||
|
||
* [ccp.asm](ccp.asm) | ||
* The source-code, to be compiled by [pasmo]() with the included `Makefile`. | ||
* [ccp.bin](ccp.bin) | ||
* The compiled binary, which is embedded in `cpmulator`, via [ccp.go](ccp.go). | ||
|
||
CCP stands for "console command processor" and is basically the "shell". |
Oops, something went wrong.