From f6c5be1c6484d20c5138c188c72e7f9f2cec0721 Mon Sep 17 00:00:00 2001 From: "John B. Matthews" Date: Wed, 21 May 2008 12:14:56 +0000 Subject: [PATCH] Document long neglected 800K Pascal image support. --- src/com/webcodepro/applecommander/ui/UiBundle.properties | 2 +- src/com/webcodepro/applecommander/ui/ac.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/com/webcodepro/applecommander/ui/UiBundle.properties b/src/com/webcodepro/applecommander/ui/UiBundle.properties index 2c51cf0..eaa0a23 100644 --- a/src/com/webcodepro/applecommander/ui/UiBundle.properties +++ b/src/com/webcodepro/applecommander/ui/UiBundle.properties @@ -100,7 +100,7 @@ CreateDirectoryMenuItem=Create Directory... CommandLineErrorMessage = Error: {0} CommandLineNoMatchMessage = {0}: No match. CommandLineStatus = {0} format; {1} bytes free; {2} bytes used. -CommandLineHelp = AppleCommander command line options [{0}]:\n-i display information about image.\n-ls list brief directory of image.\n-l list directory of image.\n-ll list detailed directory of image.\n-e export file from image to stdout.\n-g get raw file from image to stdout.\n-p [[$|0x]] put stdin\n in filename on image, using file type and address [0x2000].\n-d delete file from image.\n-cc65 put stdin with cc65 header\n in filename on image, using file type and address from header.\n-dos140 create a 140K DOS 3.3 image.\n-pro140 create a 140K ProDOS image.\n-pro800 create a 800K ProDOS image.\n-pas140 create a 140K Pascal image. +CommandLineHelp = AppleCommander command line options [{0}]:\n-i display information about image.\n-ls list brief directory of image.\n-l list directory of image.\n-ll list detailed directory of image.\n-e export file from image to stdout.\n-g get raw file from image to stdout.\n-p [[$|0x]] put stdin\n in filename on image, using file type and address [0x2000].\n-d delete file from image.\n-cc65 put stdin with cc65 header\n in filename on image, using file type and address from header.\n-dos140 create a 140K DOS 3.3 image.\n-pro140 create a 140K ProDOS image.\n-pro800 create an 800K ProDOS image.\n-pas140 create a 140K Pascal image.\n-pas800 create an 800K Pascal image. # UserPreferences diff --git a/src/com/webcodepro/applecommander/ui/ac.java b/src/com/webcodepro/applecommander/ui/ac.java index 2b32065..8889d40 100644 --- a/src/com/webcodepro/applecommander/ui/ac.java +++ b/src/com/webcodepro/applecommander/ui/ac.java @@ -73,6 +73,8 @@ public class ac { createDosDisk(args[1], Disk.APPLE_140KB_DISK); } else if ("-pas140".equalsIgnoreCase(args[0])) { //$NON-NLS-1$ createPasDisk(args[1], args[2], Disk.APPLE_140KB_DISK); + } else if ("-pas800".equalsIgnoreCase(args[0])) { //$NON-NLS-1$ + createPasDisk(args[1], args[2], Disk.APPLE_800KB_DISK); } else if ("-pro140".equalsIgnoreCase(args[0])) { //$NON-NLS-1$ createProDisk(args[1], args[2], Disk.APPLE_140KB_DISK); } else if ("-pro800".equalsIgnoreCase(args[0])) { //$NON-NLS-1$