summaryrefslogtreecommitdiffhomepage
path: root/dev/modules/SCSI/SCSI.h
blob: d9ede8b4973bf621c608ae02ea60feb4181e1aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -------------------------------------------

  Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.

------------------------------------------- */

#pragma once

#include <NeKit/Defines.h>

/// @file SCSI.h
/// @brief Small Computer System Interface device.

namespace Kernel {
template <int PacketBitLen>
using scsi_packet_type    = Kernel::UInt16[PacketBitLen];
using scsi_packet_type_12 = scsi_packet_type<12>;

extern const scsi_packet_type<12> kCDRomPacketTemplate;
}  // namespace Kernel