[pintOS] FAT 구현기
크래프톤 정글·2025. 6. 10.
그럼 이제 fat 관련 함수들을 먼저 구현해보자.우리가 구현해야할 함수들은 아래와 같다.cluster_t fat_fs_init(void);cluster_t fat_create_chain(cluster_t clst);void fat_remove_chain(cluster_t clst, cluster_t pclst);void fat_put(cluster_t clst, cluster_t val);cluster_t fat_get(cluster_t clst);disk_sector_t cluster_to_sector(cluster_t clst);클러스터와 클러스터 체인이 무엇인지는 이전 포스트에서 정리해두었으니 아직 모른다면 보고 오자. https://gooch123.tistory.com/33#0 [pintOS] 파..