File: ide.c

package info (click to toggle)
fuse-emulator-utils 1.1.1-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,580 kB
  • ctags: 1,006
  • sloc: sh: 11,523; ansic: 9,011; cpp: 1,051; makefile: 186
file content (52 lines) | stat: -rw-r--r-- 1,419 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* ide.c: constants etc used for IDE emulation
   Copyright (c) 2004-2005 Philip Kendall

   $Id: ide.c 2891 2007-05-26 19:42:40Z zubzero $

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License along
   with this program; if not, write to the Free Software Foundation, Inc.,
   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

   Author contact information:

   Philip Kendall <philip-fuse@shadowmagic.org.uk>

*/

#include "ide.h"

const char *HDF_SIGNATURE = "RS-IDE\x1a";
const size_t HDF_SIGNATURE_LENGTH = 7;
const size_t HDF_DATA_OFFSET = 0x80;

char
hdf_version( enum hdf_version_t version )
{
  switch( version ) {
  case HDF_VERSION_10: return '\x10';
  case HDF_VERSION_11: return '\x11';
  }

  return 0;
}

size_t
hdf_data_offset( enum hdf_version_t version )
{
  switch( version ) {
  case HDF_VERSION_10: return 0x0080;
  case HDF_VERSION_11: return 0x0216;
  }

  return 0;
}