defined BAT

This commit is contained in:
Denis Molony 2018-04-26 09:07:23 +10:00
parent d65c4dfe44
commit d748aab228
2 changed files with 2 additions and 0 deletions

View File

@ -259,6 +259,7 @@ class FileEntry extends CatalogEntry implements ProdosConstants
case FILE_TYPE_BINARY:
case FILE_TYPE_RELOCATABLE:
case FILE_TYPE_SYS:
case FILE_TYPE_BAT:
case FILE_TYPE_USER_DEFINED_1:
// if (name.endsWith (".S"))
// file = new MerlinSource (name, exactBuffer, auxType, endOfFile);

View File

@ -25,6 +25,7 @@ public interface ProdosConstants
int FILE_TYPE_APPLETALK = 0xE2;
int FILE_TYPE_PASCAL_VOLUME = 0xEF;
int FILE_TYPE_USER_DEFINED_1 = 0xF1;
int FILE_TYPE_BAT = 0xF5;
int FILE_TYPE_INTEGER_BASIC = 0xFA;
int FILE_TYPE_INTEGER_BASIC_VARS = 0xFB;
int FILE_TYPE_APPLESOFT_BASIC = 0xFC;