From 45c415b9e6567d134af8e271b1ef4407201a4a9f Mon Sep 17 00:00:00 2001 From: Robert Greene Date: Thu, 12 Dec 2002 01:45:04 +0000 Subject: [PATCH] Added constants for 5MB, 10MB, 20MB, and 32MB harddisks. --- src/com/webcodepro/applecommander/storage/Disk.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/webcodepro/applecommander/storage/Disk.java b/src/com/webcodepro/applecommander/storage/Disk.java index ca32c0a..0efff0e 100644 --- a/src/com/webcodepro/applecommander/storage/Disk.java +++ b/src/com/webcodepro/applecommander/storage/Disk.java @@ -60,6 +60,10 @@ public class Disk { public static final int APPLE_140KB_DISK = 143360; public static final int APPLE_800KB_DISK = 819200; public static final int APPLE_800KB_2IMG_DISK = APPLE_800KB_DISK + 0x40; + public static final int APPLE_5MB_HARDDISK = 5242880; + public static final int APPLE_10MB_HARDDISK = 10485760; + public static final int APPLE_20MB_HARDDISK = 20971520; + public static final int APPLE_32MB_HARDDISK = 33553920; // short one block! private static FilenameFilter[] filenameFilters; private byte[] diskImage;