Nigel
a77621faf5
- Improved the run bash script to exit when an error occurs in one of the sub tasks - Wrote basic FAT16 functions that should give enough information to properly implement the rest of the driver - FAT structure namings are now in accordence with the microsoft spec of March 2005
12 lines
119 B
C++
12 lines
119 B
C++
//
|
|
// Created by nigel on 23/02/23.
|
|
//
|
|
#pragma once
|
|
|
|
class partitionManager {
|
|
public:
|
|
static bool Validate();
|
|
|
|
};
|
|
|