test installation

This commit is contained in:
Denis Molony 2020-07-23 18:12:16 +10:00
parent 419ce93f65
commit 713fb38972
1 changed files with 6 additions and 0 deletions

View File

@ -181,6 +181,12 @@ public class DosMasterDisk
st -= 16 * 4096;
int num = (v - st) / sz - 1;
int test = switch(num)
{
case 1->27;
default -> throw new IllegalArgumentException ("Unexpected value: " + num);
};
text.append (String.format (" %d volumes of %d sectors%n", num, sz * 2));