basekernel/kernel/cdromfs.h

27 lines
405 B
C
Raw Permalink Normal View History

2024-10-14 23:08:40 +02:00
/*
Copyright (C) 2016-2019 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file LICENSE for details.
*/
#ifndef CDROMFS_H
#define CDROMFS_H
#include "kernel/types.h"
#define CDROMFS_BLOCK_SIZE 2048
struct cdrom_volume {
int root_sector;
int root_length;
int total_sectors;
};
struct cdrom_dirent {
int sector;
};
int cdrom_init();
#endif