Add native format for small FAT32; fix MBR bugs

This commit is contained in:
Pdawg11239
2025-03-29 20:06:48 -04:00
parent e039a2b112
commit da78608a75
6 changed files with 63 additions and 32 deletions

View File

@@ -6,6 +6,12 @@
internal const string ANSI_RESET = "\u001b[0m";
internal const long KB = 1024L;
internal const long MB = 1048576L;
internal const long GB = 1073741824L;
internal const long TB = 1099511627776L;
internal const int FMIFS_HARDDISK = 0xC;
internal const uint GENERIC_READ = 0x80000000;
internal const uint GENERIC_WRITE = 0x40000000;