mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-10 23:29:42 +00:00
19 lines
316 B
C
19 lines
316 B
C
|
#ifndef __TRACKSECTOR_H__
|
||
|
#define __TRACKSECTOR_H__
|
||
|
|
||
|
namespace Device {
|
||
|
|
||
|
struct TrackSector {
|
||
|
TrackSector(unsigned, unsigned);
|
||
|
unsigned track;
|
||
|
unsigned sector;
|
||
|
};
|
||
|
|
||
|
inline TrackSector::TrackSector(unsigned t, unsigned s)
|
||
|
{
|
||
|
track = t;
|
||
|
sector = s;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|